Skip to content

Commit

Permalink
Setup user and do passwordless, all the good stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
wtgee committed Nov 19, 2024
1 parent 1b191ab commit 9f2d661
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions resources/scripts/install-system-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
echo "Installing system dependencies."

# Clean up problems.
apt-get update --fix-missing -y
sudo apt-get update --fix-missing -y

# Upgrade.
apt-get -y full-upgrade
sudo apt-get -y full-upgrade

apt-get -y install \
sudo apt-get -y install \
ack \
astrometry.net \
astrometry-data-tycho2-10-19 \
Expand All @@ -34,4 +34,4 @@ apt-get -y install \
wget \
zsh

apt-get -y autoremove
sudo apt-get -y autoremove
3 changes: 2 additions & 1 deletion resources/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
set -e

echo "Installing POCS"
sudo /bin/bash install-system-deps.sh
source ./setup-user.sh
source ./install-system-deps.sh
source ./install-pocs.sh
source ./install-conda.sh
source ./install-zsh.sh
Expand Down

0 comments on commit 9f2d661

Please sign in to comment.