Merge pull request #620 from thriqon/130-issue-stdin

Allow reading contents of __motd and __issue from stdin
This commit is contained in:
Darko Poljak 2018-01-31 20:12:10 +01:00 committed by GitHub
commit 87558adbda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -25,6 +25,9 @@ os="$(cat "$__global/explorer/os")"
if [ -f "$__object/parameter/source" ]; then
source="$(cat "$__object/parameter/source")"
if [ "$source" = "-" ]; then
source="${__object}/stdin"
fi
else
case "$os" in
archlinux|redhat)

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