MOTDs32/Install.sh

88 lines
2.1 KiB
Bash
Raw Normal View History

2017-07-20 15:01:54 +02:00
#!/bin/sh
2017-07-18 23:06:11 +02:00
#
2017-07-20 15:01:54 +02:00
# MOTDs32 installation instructions
# ==================================
#
# (2017) New project MOTDs32 by Erreur32
2017-07-18 23:06:11 +02:00
# Author: Erreur32
# Version 0.0.5
#
2017-07-20 15:01:54 +02:00
# https://gitlab.echosystem.fr/Erreur32/MOTDs32
#
# ,--. ,--. ,-----. ,--------.,------. ,----. ,---.
# | `.' |' .-. ''--. .--'| .-. \ ,---. '.-. |'.-. \
# | |'.'| || | | | | | | | \ :( .-' .' < .-' .'
# | | | |' '-' ' | | | '--' /.-' `)/'-' |/ '-.
# `--' `--' `-----' `--' `-------' `----' `----' '-----'
#
# | + |
2017-07-18 23:06:11 +02:00
# 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-20 15:01:54 +02:00
#
################################################################################
#
# Installation
# ============
#
# As root execute this command (the easy way!):
#
# ./Install.sh
#
################################################################################
## clean terminal
2017-07-19 09:22:15 +02:00
clear;
2017-07-18 23:27:05 +02:00
2017-07-20 15:01:54 +02:00
## Install command in bashrc
echo "cat /etc/motd" >> /root/.bashrc
## Insdtall modules
#mkdir /etc/motds32
if [ -e /etc/motds32/Stats32]
then
echo -e "Stats32 already installed"
else
mkdir /etc/motds32;
cp Stats32 /etc/motds32/Stats32 -Rf
fi
if [ -e /usr/bin/motd]
then
echo -e "motd already installed"
else
ln -s /usr/bin/motds32 /usr/bin/motd
fi
echo -e "Do you wish to install the missing package before (y/n)? \n --> apt-get install ntp figlet ?"
2017-07-18 23:06:11 +02:00
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-20 15:01:54 +02:00
echo -e "/n OK installation start: ntp figlet" ; apt-get install -y ntp figlet; make install
2017-07-18 23:06:11 +02:00
else
2017-07-20 14:46:30 +02:00
echo -e "/n No continue without"; make install
2017-07-18 23:06:11 +02:00
fi
2017-07-20 14:20:10 +02:00
2017-07-18 23:06:11 +02:00
## Install Crontab
2017-07-20 15:01:54 +02:00
echo -e "\n \n Add ENTRY in ROOT crontab (generation each 5 minutes)"
2017-07-18 23:27:05 +02:00
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
2017-07-20 11:00:56 +02:00
## Generate first stats
2017-07-18 23:06:11 +02:00
/usr/bin/motds32 -g
2017-07-20 15:02:23 +02:00
#EOF