commit 8910dc207de80044df9e6c7f63e7b051c050b579 Author: draconis Date: Tue Feb 19 12:13:28 2019 +0100 Initial commit diff --git a/.gitignore.d/motd-colmaris b/.gitignore.d/motd-colmaris new file mode 100644 index 0000000..251f01b --- /dev/null +++ b/.gitignore.d/motd-colmaris @@ -0,0 +1,16 @@ +* +!/git +!/git/motd-colmaris +!/git/motd-colmaris/README.md +!/git/motd-colmaris/source +!/git/motd-colmaris/source/bootlogs +!/git/motd-colmaris/source/debian +!/git/motd-colmaris/source/debian/changelog +!/git/motd-colmaris/source/debian/compat +!/git/motd-colmaris/source/debian/control +!/git/motd-colmaris/source/debian/copyright +!/git/motd-colmaris/source/debian/postinst +!/git/motd-colmaris/source/debian/rules +!/git/motd-colmaris/source/motd +!/git/motd-colmaris/source/motd.tcl +!/git/motd-colmaris/source/profile diff --git a/README.md b/README.md new file mode 100644 index 0000000..b8d4a60 --- /dev/null +++ b/README.md @@ -0,0 +1,46 @@ +# Dynamic Message of the day for my Debian server + +Screenshot + +![logo](https://labo.olivierdelort.net/olivier/motd/blob/master/screen_shot.jpg "Screenshot_blank") + +## Configuration : + + You have to install the rsb-release package to use it. + + ``` + sudo apt-get install lsb-release + ``` + +## Install the developpment release + +``` +git clone https://labo.olivierdelort.net/olivier/motd.git +``` + +Disable the SSH's motd + +``` +sudo sed -i 's/#PrintMotd yes/PrintMotd no/g' /etc/ssh/sshd_config +``` + +Enable the new motd at start session + +``` +sudo echo "/usr/local/bin/coldmotd" > /etc/profile.d/coldmotd.sh +sudo chmod +x /etc/profile.d/coldmotd.sh +``` + +Copy the new motd + +``` +sudo cp motd /usr/local/bin/ +sudo chmod +x /usr/local/bin/motd +``` +# FOR ZSH USERS + +Just add this line "/usr/local/bin/motd" in your ~/.ZSHRC. It's recommanded to add it at the end of the file + + + +Sources : https://github.com/jjasghar/scripts/blob/master/dynmotd diff --git a/screen_shot.jpg b/screen_shot.jpg new file mode 100644 index 0000000..42235b7 Binary files /dev/null and b/screen_shot.jpg differ diff --git a/source/coldmotd b/source/coldmotd new file mode 100644 index 0000000..d774a4c --- /dev/null +++ b/source/coldmotd @@ -0,0 +1,33 @@ +#!/bin/bash +PROCCOUNT=`ps -Afl | wc -l` +PROCCOUNT=`expr $PROCCOUNT - 5` + +uptime=$( Fri, 23 Oct 2015 11:18:00 +0100 + +coldmotd (1.6) stable; urgency=low + + * obsolete ifconfig fixed by ip addr show + + -- Olivier Delort Wed, 21 Oct 2015 00:56:00 +0100 + +coldmotd (1.5) stable; urgency=low + + * back to the first install for zsh users + + -- Olivier Delort Wed, 21 Oct 2015 00:13:00 +0100 + +coldmotd (1.4) stable; urgency=low + + * message for zsh most viewer + + -- Olivier Delort Wed, 21 Oct 2015 00:13:00 +0100 + +coldmotd (1.3) stable; urgency=low + + * pause in postintall file fixed + + -- Olivier Delort Wed, 21 Oct 2015 00:07:00 +0100 + +coldmotd (1.2) stable; urgency=low + + * installation fixed fir zsh users + + -- Olivier Delort Wed, 21 Oct 2015 00:03:00 +0100 + +coldmotd (1.1) stable; urgency=low + + * use space disk for root partition added + * container space disk use for openvz and lxc + + -- Olivier Delort Tue, 20 Oct 2015 23:42:00 +0100 + +coldmotd (1.0) stable; urgency=low + + * new code + * Most simply to configure and install + + -- Olivier Delort Thu, 25 Jun 2015 06:56:00 +0100 + +coldmotd (1.0.1) stable; urgency=low + + * new layout + + -- Olivier Delort Mon, 28 Apr 2014 13:12:00 +0100 + +coldmotd (1.0.0) unstable; urgency=low + + * disk usage deleted + * warning message deleted + * new ascii logo + * first stable version 1.0.0 + + -- Olivier Delort Mon, 28 Apr 2014 13:12:00 +0100 + + +coldmotd (0.1-beta5) unstable; urgency=low + + * new logo. + + + -- Olivier Delort Fri, 21 Mar 2014 14:12:00 +0100 + +coldmotd (0.1-beta4) unstable; urgency=low + + * motd.tcl right configured at the end of the postinst. + + + -- Olivier Delort Fri, 21 Mar 2014 14:12:00 +0100 + +coldmotd (0.1-beta3) unstable; urgency=low + + * fi function was forgoten. + + + -- Olivier Delort Fri, 21 Mar 2014 11:56:00 +0100 + + +coldmotd (0.1-beta2) unstable; urgency=low + + * exit 0 added at the end of the postinst file. + + + -- Olivier Delort Fri, 21 Mar 2014 11:56:00 +0100 + +coldmotd (0.1-beta1) unstable; urgency=low + + * postinst file added to install new bootlogs file. + + + -- Olivier Delort Fri, 21 Mar 2014 10:56:00 +0100 + +coldmotd (0.1) unstable; urgency=low + + * Initial release. + + + -- Olivier Delort Fri, 21 Mar 2014 06:56:00 +0100 diff --git a/source/debian/compat b/source/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/source/debian/compat @@ -0,0 +1 @@ +5 diff --git a/source/debian/control b/source/debian/control new file mode 100644 index 0000000..ecbca1b --- /dev/null +++ b/source/debian/control @@ -0,0 +1,12 @@ +Source: coldmotd +Section: misc +Priority: extra +Maintainer: Olivier Delort +Build-Depends: debhelper (>= 5.0.0) +Standards-Version: 1.7 +Homepage: http://wiki-colmaris.olivierdelort.net + +Package: coldmotd +Architecture: all +Depends: lsb-release +Description: Configuration for the message of the day colmaris's server. diff --git a/source/debian/copyright b/source/debian/copyright new file mode 100644 index 0000000..6219e9b --- /dev/null +++ b/source/debian/copyright @@ -0,0 +1,21 @@ +This package was debianized by Olivier Delort +Fri, 21 Mar 2014 06:59:00 +0100 + +Copyright: + Packaging copyright © 2014 Olivier Delort + Writting copyright © 2014 Olivier Delort + +License: + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/source/debian/postinst b/source/debian/postinst new file mode 100644 index 0000000..8741621 --- /dev/null +++ b/source/debian/postinst @@ -0,0 +1,15 @@ +#!/bin/bash + +#Disable the motd in SSH Server +sed -i 's/#PrintMotd yes/PrintMotd no/g' /etc/ssh/sshd_config +#Enable motd for bash user +echo "/usr/local/bin/coldmotd" > /etc/profile.d/coldmotd.sh +chmod +x /etc/profile.d/coldmotd.sh +# for zsh users +if [ -f "/usr/bin/zsh" ];then +echo "/usr/local/bin/coldmotd" >> ~/.zprofile; +fi +#disable the system motd +echo "" > /etc/motd +chmod +x /usr/local/bin/coldmotd +exit 0 diff --git a/source/debian/rules b/source/debian/rules new file mode 100755 index 0000000..c0bfaa6 --- /dev/null +++ b/source/debian/rules @@ -0,0 +1,36 @@ +#!/usr/bin/make -f + +build: + +build-arch: + +build-indep: + +clean: + dh_testdir + dh_testroot + dh_clean + +install: + dh_install coldmotd /usr/local/bin + dh_install motd-maint /etc/ + dh_install openvz /usr/local/bin + dh_install lxc /usr/local/bin + dh_testdir + dh_testroot +binary-arch: + +binary-indep: install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch + +.PHONY: clean install binary-arch binary-indep binary diff --git a/source/lxc b/source/lxc new file mode 100755 index 0000000..1c46030 --- /dev/null +++ b/source/lxc @@ -0,0 +1,7 @@ +#!/bin/bash + +if [ -d "/var/lib/lxc" ];then +df -h /var/lib/lxc | awk '{ a = $5} END {print a}'; +else +echo "Not Installed"; +fi diff --git a/source/motd-maint b/source/motd-maint new file mode 100644 index 0000000..52899ec --- /dev/null +++ b/source/motd-maint @@ -0,0 +1,3 @@ +Nothing to report ! +Modify the motd-maint file in /etc/ +Only the 3 last lines are display! diff --git a/source/old_motd.tcl b/source/old_motd.tcl new file mode 100644 index 0000000..189e029 --- /dev/null +++ b/source/old_motd.tcl @@ -0,0 +1,83 @@ +#!/usr/bin/tclsh +# MOTD script for server +# 21.03.2014 08:53:17 +# Olivier Delort contact@olivierdelort.net + +# * Variables +set var(user) $env(USER) +set var(path) $env(PWD) + + +# * Calculate last login +set lastlog [exec -- lastlog -u $var(user)] +set ll(1) [lindex $lastlog 7] +set ll(2) [lindex $lastlog 8] +set ll(3) [lindex $lastlog 9] +set ll(4) [lindex $lastlog 10] +set ll(5) [lindex $lastlog 6] + +# * Calculate current system uptime +set uptime [exec -- /usr/bin/cut -d. -f1 /proc/uptime] +set up(days) [expr {$uptime/60/60/24}] +set up(hours) [expr {$uptime/60/60%24}] +set up(mins) [expr {$uptime/60%60}] +set up(secs) [expr {$uptime%60}] + +# * Calculate SSH logins: +set logins [exec -- w -s] +set log(c) [lindex $logins 5] + +# * Calculate processes +set psu [lindex [exec -- ps U $var(user) h | wc -l] 0] +set psa [lindex [exec -- ps -A h | wc -l] 0] + +# * Calculate current system load +set loadavg [exec -- /bin/cat /proc/loadavg] +set sysload(1) [lindex $loadavg 0] +set sysload(5) [lindex $loadavg 1] +set sysload(15) [lindex $loadavg 2] + +# * Calculate Memory +set memory [exec -- free -m] +set mem(t) [lindex $memory 7] +set mem(u) [lindex $memory 8] +set mem(f) [lindex $memory 9] +set mem(c) [lindex $memory 16] +set mem(s) [lindex $memory 19] + +# * display kernel version +set uname [exec -- /bin/uname -nrmo] +set unameoutput0 [lindex $uname 0] +set unameoutput1 [lindex $uname 1] +set unameoutput2 [lindex $uname 2] +set unameoutput3 [lindex $uname 3] +# * ascii head +set head { + _ + | | + __ _____| | ___ ___ _ __ ___ ___ + \ \ /\ / / _ \ |/ __/ _ \| '_ ` _ \ / _ \ + \ V V / __/ | (_| (_) | | | | | | __/ + \_/\_/ \___|_|\___\___/|_| |_| |_|\___| + +} + +# * Print Output +puts "\033\[01;32m$head\033\[0m" +puts " \033\[35mSystem........:\033\[0m \033\[36m $unameoutput0 $unameoutput1 $unameoutput2 $unameoutput3" +puts " \033\[35mLast Login....:\033\[0m \033\[36m $ll(1) $ll(2) $ll(3) $ll(4) from $ll(5)" +puts " \033\[35mUptime........:\033\[0m \033\[36m $up(days)days $up(hours)hours $up(mins)minutes $up(secs)seconds" +puts " \033\[35mLoad..........:\033\[0m \033\[36m $sysload(1) (1minute) $sysload(5) (5minutes) $sysload(15) (15minutes)" +puts " \033\[35mMemory MB.....:\033\[0m \033\[36m $mem(t) Used: $mem(u) Free: $mem(f) Free Cached: $mem(c) Swap In Use: $mem(s)" +puts " \033\[35mSSH Logins....:\033\[0m \033\[36m There are currently $log(c) users logged in." +puts " \033\[35mProcesses.....:\033\[0m \033\[36m $psa total running of which $psu yours" + +if {[file exists /etc/changelog]&&[file readable /etc/changelog]} { + puts " . .. More or less important system informations:\n" + set fp [open /etc/changelog] + while {-1!=[gets $fp line]} { + puts " ..) $line" + } + close $fp + puts "" +} diff --git a/source/openvz b/source/openvz new file mode 100755 index 0000000..21cfdc1 --- /dev/null +++ b/source/openvz @@ -0,0 +1,7 @@ +#!/bin/bash + +if [ -d "/var/lib/vz" ];then +df -h /var/lib/vz | awk '{ a = $5} END {print a}'; +else +echo "Not Installed"; +fi