From 67ac7effb6d9663a28513c529330ae7e50ca74f8 Mon Sep 17 00:00:00 2001 From: Wilfred Tyler Gee Date: Tue, 19 Nov 2024 13:13:10 -1000 Subject: [PATCH] Output updates --- resources/scripts/install-system-deps.sh | 2 -- resources/scripts/install.sh | 28 +++++++++++++++++++----- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/resources/scripts/install-system-deps.sh b/resources/scripts/install-system-deps.sh index 0e9c17e88..caacb4c25 100644 --- a/resources/scripts/install-system-deps.sh +++ b/resources/scripts/install-system-deps.sh @@ -27,8 +27,6 @@ sudo apt-get -y install \ libcfitsio-bin \ make \ nano \ - python3 \ - python3-pip \ supervisor \ vim-nox \ wget \ diff --git a/resources/scripts/install.sh b/resources/scripts/install.sh index 6afff4ec6..ff0ae44b1 100644 --- a/resources/scripts/install.sh +++ b/resources/scripts/install.sh @@ -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