added synpatic and aptitude
This commit is contained in:
parent
cb2a0171d1
commit
2916133451
1 changed files with 3 additions and 6 deletions
9
deps.sh
9
deps.sh
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#These are the base dependencies for 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 \
|
||||||
|
@ -12,7 +12,7 @@ sudo apt-get -my install git \
|
||||||
htop \
|
htop \
|
||||||
mc \
|
mc \
|
||||||
curl \
|
curl \
|
||||||
# byobu \
|
aptitude \
|
||||||
|
|
||||||
read -n1 -p $'Does this system need ssh access?\n' REPLY
|
read -n1 -p $'Does this system need ssh access?\n' REPLY
|
||||||
if [[ $REPLY == [Yy] ]]; then
|
if [[ $REPLY == [Yy] ]]; then
|
||||||
|
@ -20,11 +20,8 @@ read -n1 -p $'Does this system need ssh access?\n' REPLY
|
||||||
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 emacs
|
sudo apt-get install emacs synaptic
|
||||||
else
|
else
|
||||||
sudo apt-get install emacs-nox
|
sudo apt-get install emacs-nox
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#echo "enabling byobu"
|
|
||||||
#byobu-enable
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue