Allow __motd to read from stdin

This commit is contained in:
Jonas Weber 2018-01-31 12:10:37 +00:00
parent 2069650e74
commit bfde7a6cfa
1 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,9 @@
# Select motd source
if [ -f "$__object/parameter/source" ]; then
source="$(cat "$__object/parameter/source")"
if [ "$source" = "-" ]; then
source="${__object}/stdin"
fi
else
source="$__type/files/motd"
fi