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 67ac7ef commit 1bd2bd3
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions resources/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,24 @@
set -e

echo "Installing POCS"
echo "Installing POCS" >> install.log

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

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

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

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

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

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

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

0 comments on commit 1bd2bd3

Please sign in to comment.