home/bin/motd.sh

10 lines
215 B
Bash
Raw Normal View History

2019-01-18 22:11:25 +01:00
#!/bin/ash
2019-01-18 22:29:20 +01:00
# this one is creating my /etc/motd file via cron to get some network
# statistics when logging in to my servers.
2019-01-18 22:11:25 +01:00
echo "" > /etc/motd
hostname -f >> /etc/motd
echo "" >> /etc/motd
vnstat >> /etc/motd