Skip to content

Commit

Permalink
Output updates
Browse files Browse the repository at this point in the history
  • Loading branch information
wtgee committed Nov 19, 2024
1 parent 27f8db4 commit 67ac7ef
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
2 changes: 0 additions & 2 deletions resources/scripts/install-system-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ sudo apt-get -y install \
libcfitsio-bin \
make \
nano \
python3 \
python3-pip \
supervisor \
vim-nox \
wget \
Expand Down
28 changes: 22 additions & 6 deletions resources/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,25 @@
set -e

echo "Installing POCS"
source ./setup-user.sh
source ./install-system-deps.sh
source ./install-pocs.sh
source ./install-conda.sh
source ./install-zsh.sh
source ./install-services.sh
echo "Installing POCS" >> install.log

echo "Setting up user."
source ./setup-user.sh 2>&1 | tee -a install.log

echo "Fixing system time."
source ./fix-time.sh 2>&1 | tee -a install.log

echo "Installing system dependencies."
source ./install-system-deps.sh 2>&1 | tee -a install.log

echo "Installing POCS software."
source ./install-pocs.sh 2>&1 | tee -a install.log

echo "Installing conda python."
source ./install-conda.sh 2>&1 | tee -a install.log

echo "Installing ZSH for a better shell."
source ./install-zsh.sh 2>&1 | tee -a install.log

echo "Installing services so things run at startup."
source ./install-services.sh 2>&1 | tee -a install.log

0 comments on commit 67ac7ef

Please sign in to comment.