-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove from functions so just scripts run.
- Loading branch information
Showing
6 changed files
with
67 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,37 @@ | ||
#!/usr/bin/env bash | ||
|
||
function system_deps() { | ||
echo "Installing system dependencies." | ||
echo "Installing system dependencies." | ||
|
||
# Set up passwordless sudo for all sudo group. | ||
echo "%sudo ALL=(ALL) NOPASSWD: ALL" | tee /etc/sudoers.d/panoptes | ||
# Clean up problems. | ||
apt-get update --fix-missing -y | ||
|
||
# Clean up problems. | ||
apt-get -y -qq purge needrestart | ||
apt-get update --fix-missing -y -qq | ||
apt-get -y -qq full-upgrade | ||
# Upgrade. | ||
apt-get -y full-upgrade | ||
|
||
apt-get -y -qq install \ | ||
ack \ | ||
astrometry.net \ | ||
astrometry-data-tycho2-10-19 \ | ||
byobu \ | ||
curl \ | ||
dcraw \ | ||
exiftool \ | ||
fonts-powerline \ | ||
gcc \ | ||
gphoto2 \ | ||
htop \ | ||
httpie \ | ||
jo \ | ||
jq \ | ||
libcfitsio-bin \ | ||
make \ | ||
nano \ | ||
vim-nox \ | ||
supervisor \ | ||
wget \ | ||
zsh | ||
apt-get -y -qq autoremove | ||
} | ||
apt-get -y install \ | ||
ack \ | ||
astrometry.net \ | ||
astrometry-data-tycho2-10-19 \ | ||
byobu \ | ||
curl \ | ||
dcraw \ | ||
exiftool \ | ||
fonts-powerline \ | ||
gcc \ | ||
git \ | ||
gphoto2 \ | ||
htop \ | ||
httpie \ | ||
jo \ | ||
jq \ | ||
libcfitsio-bin \ | ||
make \ | ||
nano \ | ||
python3 \ | ||
python3-pip \ | ||
supervisor \ | ||
vim-nox \ | ||
wget \ | ||
zsh | ||
|
||
system_deps | ||
apt-get -y autoremove |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters