maybe chmod 0755 'update-motd.d/40-tail'
maybe chmod 0755 'update-motd.d/50-fortune'
maybe chmod 0755 'update-motd.d/60-ddate'
+maybe chmod 0755 'update-motd.d/70-need-reboot'
maybe chmod 0644 'updatedb.conf'
maybe chmod 0644 'vdpau_wrapper.cfg'
maybe chmod 0755 'vim'
--- /dev/null
+#!/bin/bash
+
+CYAN="\033[38;5;14m"
+NORMAL="\033[39m"
+
+if [[ -f /run/reboot-required ]] ; then
+ echo
+ echo -e "❗❗😯💣 The host needs to be rebootet! 💣😯❗❗"
+ echo
+ if [[ -f /run/reboot-required.pkgs ]] ; then
+ echo "The following packages were changed:"
+ for p in $( cat /run/reboot-required.pkgs ) ; do
+ echo -e " * ${CYAN}${p}${NORMAL}"
+ done
+ echo
+ fi
+fi
+