8 lines
115 B
Bash
Executable File
8 lines
115 B
Bash
Executable File
#!/bin/sh -e
|
|
#
|
|
# helper for update-motd
|
|
|
|
if [ -f /var/run/reboot-required ]; then
|
|
cat /var/run/reboot-required
|
|
fi
|