From 18f28f51e77b5a100656d89f53dc2b1668afe525 Mon Sep 17 00:00:00 2001 From: steveokard Date: Thu, 18 Jul 2019 14:04:23 -0400 Subject: [PATCH] retained apt-get version --- deps.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/deps.sh b/deps.sh index c582ccb..7f584ee 100755 --- a/deps.sh +++ b/deps.sh @@ -2,7 +2,7 @@ #These are the programs I expect to find on any install echo "installing base dependencies" -sudo zypper install git \ +sudo apt-get -my install git \ stow \ etckeeper \ tmux \ @@ -12,15 +12,16 @@ sudo zypper install git \ htop \ mc \ curl \ + aptitude \ read -n1 -p $'Does this system need ssh access?\n' REPLY if [[ $REPLY == [Yy] ]]; then - sudo zypper install openssh-server + sudo apt-get install openssh-server fi read -n1 -p $'\nDoes this system have a GUI?\n' REPLY if [[ $REPLY == [Yy] ]]; then - sudo zypper install emacs + sudo apt-get install emacs synaptic else - sudo zypper install emacs-nox + sudo apt-get install emacs-nox fi