maybe chmod 0644 'mono/browscap.ini'
maybe chmod 0755 'mono/certstore'
maybe chmod 0644 'mono/config'
+maybe chmod 0644 'motd.tail'
maybe chmod 0755 'mplayer'
maybe chmod 0644 'mplayer/input.conf'
maybe chmod 0644 'mplayer/menu.conf'
# Eine nette Begrüßung ...
-1,11,21,31,41,51 * * * * root test -x /root/bin/generate-motd.sh && /root/bin/generate-motd.sh >/dev/null
-@reboot root test -x /root/bin/generate-motd.sh && /root/bin/generate-motd.sh >/dev/null
+#1,11,21,31,41,51 * * * * root test -x /root/bin/generate-motd.sh && /root/bin/generate-motd.sh >/dev/null
+#@reboot root test -x /root/bin/generate-motd.sh && /root/bin/generate-motd.sh >/dev/null
--- /dev/null
+ ____ _
+| __ ) _ __ _ _ _ __ (_)
+| _ \| '__| | | | '_ \| |
+| |_) | | | |_| | | | | |
+|____/|_| \__,_|_| |_|_|
+
-#!/bin/sh
+#!/bin/bash
+
+export LC_ALL=de_DE.utf8
+
+uname -a
+/usr/bin/lsb_release -d | sed -e 's/^[ ]*Description[ ]*:[ ]*//'
+
+if [[ -f /etc/motd.tail ]] ; then
+ cat /etc/motd.tail
+fi
+
+if [[ -x /usr/bin/fortune ]] ; then
+ echo
+ /usr/bin/fortune de
+elif [[ -x /usr/games/fortune ]] ; then
+ echo
+ /usr/games/fortune de
+fi
+
+if [[ -x /usr/bin/ddate ]] ; then
+ echo
+ /usr/bin/ddate
+fi
+
+echo
+
+# vim: ts=4 expandtab list