case statements and line breaks
This commit is contained in:
parent
f6d2ebaf61
commit
fb99e89924
1 changed files with 9 additions and 8 deletions
17
deps.sh
17
deps.sh
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
#These are the base dependencies for any install
|
||||
|
||||
echo "installing base dependencies"
|
||||
|
@ -14,14 +14,15 @@ sudo apt-get -my install git \
|
|||
curl \
|
||||
# byobu \
|
||||
|
||||
read -p "Does this system need ssh access?" -n 1 -r
|
||||
if [[ ! $REPLY =~ ^[Yy]$ ]]
|
||||
then sudo apt-get install openssh-server
|
||||
read -n1 -p $'Does this system need ssh access?\n' REPLY
|
||||
if [[ $REPLY == [Yy] ]]; then
|
||||
sudo apt-get install openssh-server
|
||||
fi
|
||||
read -p "Does this system have a GUI?" -n 1 -r
|
||||
if [[ ! $REPLY = [Yy]$ ]]
|
||||
then sudo apt-get install emacs
|
||||
else sudo apt-get install emacs-nox
|
||||
read -n1 -p $'\nDoes this system have a GUI?\n' REPLY
|
||||
if [[ $REPLY == [Yy] ]]; then
|
||||
sudo apt-get install emacs
|
||||
else
|
||||
sudo apt-get install emacs-nox
|
||||
fi
|
||||
|
||||
#echo "enabling byobu"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue