fixed fi
This commit is contained in:
parent
53efc06a17
commit
751f36e537
1 changed files with 6 additions and 5 deletions
11
udeps.sh
11
udeps.sh
|
@ -2,7 +2,8 @@
|
|||
#These are the programs I expect to find on any install
|
||||
|
||||
echo "installing base dependencies"
|
||||
sudo apt-get -my install git \
|
||||
sudo apt-get -my install \
|
||||
git \
|
||||
stow \
|
||||
etckeeper \
|
||||
tmux \
|
||||
|
@ -19,14 +20,14 @@ sudo apt-get -my install git \
|
|||
ripgrep \
|
||||
fd-find
|
||||
|
||||
read -n1 -p $'Does this system need ssh access?\n' REPLY
|
||||
read -n1 -p $'Does this system need a ssh server?\n' REPLY
|
||||
if [[ $REPLY == [Yy] ]]; then
|
||||
sudo apt-get install openssh-server
|
||||
fi
|
||||
read -n1 -p $'\nDoes this system have a GUI?\n' REPLY
|
||||
if [[ $REPLY == [Yy] ]]; then
|
||||
sudo apt-get install synaptic
|
||||
# else
|
||||
# sudo apt-get install emacs-nox
|
||||
# fi
|
||||
else
|
||||
sudo apt-get install emacs-nox
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue