MOTDs32/Install.sh

46 lines
923 B
Bash
Raw Normal View History

2017-07-18 23:06:11 +02:00
#!/bin/bash
#
# Installation of MOTDs32
# Author: Erreur32
# Version 0.0.5
#
# MOTDstat is dynamicaly refreshing the /etc/motd file with current informations
# about system status and usage.
#
# Copyright 2017 Erreur32
# original project: Pavol Krigler <pavol.krigler@gelogic.net>
#
2017-07-18 23:27:05 +02:00
2017-07-18 23:06:11 +02:00
echo -n "Do you wish to install the missing package (y/n)? "
old_stty_cfg=$(stty -g)
stty raw -echo
answer=$( while ! head -c 1 | grep -i '[ny]' ;do true ;done )
stty $old_stty_cfg
if echo "$answer" | grep -iq "^y" ;then
2017-07-18 23:36:57 +02:00
echo "Yes let's go" ; apt-get install -y ntp figlet; make install
2017-07-18 23:06:11 +02:00
else
echo "No continue without"; make install
fi
2017-07-18 23:27:05 +02:00
### Insdtall modules
2017-07-18 23:35:28 +02:00
mkdir /etc/motds32
2017-07-18 23:06:11 +02:00
cp Stats32 /etc/motds32/Stats32
## Install Crontab
2017-07-18 23:27:05 +02:00
echo "add ENTRY in crontab (generation each 5 minutes)"
crontab << FIN
$(crontab -l)
2017-07-18 23:06:11 +02:00
2017-07-18 23:27:05 +02:00
### MOTDs32 generation (5 min)
*/5 * * * * /usr/bin/motds32 -g 2>1
2017-07-18 23:06:11 +02:00
###
2017-07-18 23:27:05 +02:00
FIN
2017-07-18 23:06:11 +02:00
/usr/bin/motds32 -g