Initial commit

This commit is contained in:
2021-10-16 15:06:07 -04:00
parent 9a839d6530
commit b2d495dadc
13 changed files with 663 additions and 0 deletions

14
script-install-motd Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# Install motd scripts
scripts=("10-hostname-color" "20-sysinfo" "35-diskspace" "36-diskstatus" "40-services" "50-fail2ban")
git clone "https://github.com/yboetz/motd.git"
for script in ./motd/"${scripts[@]}"; do
cp "$script" /etc/update-motd.d/
done
rm -rf motd
exit $?