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
|
#These are the programs I expect to find on any install
|
||||||
|
|
||||||
echo "installing base dependencies"
|
echo "installing base dependencies"
|
||||||
sudo apt-get -my install git \
|
sudo apt-get -my install \
|
||||||
|
git \
|
||||||
stow \
|
stow \
|
||||||
etckeeper \
|
etckeeper \
|
||||||
tmux \
|
tmux \
|
||||||
|
@ -19,14 +20,14 @@ sudo apt-get -my install git \
|
||||||
ripgrep \
|
ripgrep \
|
||||||
fd-find
|
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
|
if [[ $REPLY == [Yy] ]]; then
|
||||||
sudo apt-get install openssh-server
|
sudo apt-get install openssh-server
|
||||||
fi
|
fi
|
||||||
read -n1 -p $'\nDoes this system have a GUI?\n' REPLY
|
read -n1 -p $'\nDoes this system have a GUI?\n' REPLY
|
||||||
if [[ $REPLY == [Yy] ]]; then
|
if [[ $REPLY == [Yy] ]]; then
|
||||||
sudo apt-get install synaptic
|
sudo apt-get install synaptic
|
||||||
# else
|
else
|
||||||
# sudo apt-get install emacs-nox
|
sudo apt-get install emacs-nox
|
||||||
# fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue