Update install.sh
This commit is contained in:
parent
06a361dc1f
commit
53731dfe48
1 changed files with 3 additions and 3 deletions
|
@ -85,16 +85,16 @@ if [ -f /usr/bin/motd ]
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo -e "\n -->\e[34m Copy files OK\n"
|
echo -e "\n -->\e[34m Copy files OK\n"
|
||||||
echo -e "\nDo you wish to install the required package?\n --> apt-get install ntp figlet ? (y/n) "
|
echo -e "\nDo you wish to install the required package?\n \e[0m --> apt-get install ntp figlet ? (y/n) "
|
||||||
old_stty_cfg=$(stty -g)
|
old_stty_cfg=$(stty -g)
|
||||||
stty raw -echo
|
stty raw -echo
|
||||||
answer=$( while ! head -c 1 | grep -i '[ny]' ;do true ;done )
|
answer=$( while ! head -c 1 | grep -i '[ny]' ;do true ;done )
|
||||||
stty $old_stty_cfg
|
stty $old_stty_cfg
|
||||||
if echo "$answer" | grep -iq "^y" ;then
|
if echo "$answer" | grep -iq "^y" ;then
|
||||||
echo -e "\n1.\e[92m installation \e[0m ntp figlet \e[92m start\e[0m" ; #apt-get install -y ntp figlet;
|
echo -e "\n1.\e[92m installation \e[0m ntp figlet \e[92m start\e[0m" ; apt-get install -y ntp figlet;
|
||||||
echo -e "\n\e[92m apt-get installation \e[0m Succesfull"
|
echo -e "\n\e[92m apt-get installation \e[0m Succesfull"
|
||||||
echo -e "\n start Makefile\n"
|
echo -e "\n start Makefile\n"
|
||||||
# make install
|
make install
|
||||||
echo -e "\n Makefile \e[92m OK"
|
echo -e "\n Makefile \e[92m OK"
|
||||||
else
|
else
|
||||||
echo -e "\nDo you want to continue this installation? (y/n)\n "
|
echo -e "\nDo you want to continue this installation? (y/n)\n "
|
||||||
|
|
Loading…
Reference in a new issue