Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raspberry PI Integration and Checks #753

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions interact/axiom-configure
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@ if [[ $BASEOS == "Linux" ]]; then
echo -e "${Blue}Installing other repo deps...${Color_Off}"
DEBIAN_FRONTEND=noninteractive sudo apt-get update && sudo apt-get install git ruby python3-pip curl iputils-ping net-tools unzip xsltproc bc rsync sudo wget nano bsdmainutils openssh-server fail2ban -y
echo -e "${Blue}Installing jq...${Color_Off}"
sudo wget -q -O /usr/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 && sudo chmod +x /usr/bin/jq
sudo wget -q -O /usr/bin/jq https://github.com/jqlang/jq/releases/download/jq-1.7/jq-linux-arm64 && sudo chmod +x /usr/bin/jq
echo -e "${Blue}Installing packer...${Color_Off}"
wget -q -O /tmp/packer.zip https://releases.hashicorp.com/packer/1.8.1/packer_1.8.1_linux_amd64.zip && cd /tmp/ && unzip packer.zip && sudo mv packer /usr/bin/ && rm /tmp/packer.zip
wget -q -O /tmp/packer.zip https://releases.hashicorp.com/packer/1.8.1/packer_1.8.1_linux_arm64.zip && cd /tmp/ && unzip packer.zip && sudo mv packer /usr/bin/ && rm /tmp/packer.zip
echo -e "${Blue}Installing Interlace...${Color_Off}"
sudo rm -fr /tmp/interlace
git clone https://github.com/codingo/Interlace.git /tmp/interlace
Expand Down