Skip to content

Commit

Permalink
Merge pull request #121 from flatcar/tormath1/issue
Browse files Browse the repository at this point in the history
issuegen: read from '/etc/issue.d'
  • Loading branch information
tormath1 authored Jun 10, 2024
2 parents 96e929d + 670acd3 commit 33b692d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/issuegen
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
print_issue() {
echo
echo 'This is \n (\s \m \r) \t'
for note in /run/issue.d/*; do
for note in /run/issue.d/* /etc/issue.d/* ; do
[ -f "${note}" ] && cat "${note}"
done
echo
Expand Down

0 comments on commit 33b692d

Please sign in to comment.