forked from ungleich-public/cdist
Disable SC2028 where intended.
This commit is contained in:
parent
ed542cc7cb
commit
28889ef38a
2 changed files with 3 additions and 1 deletions
|
@ -59,6 +59,7 @@ echo changed >> "$__messages_out"
|
|||
# Use the good old way to set the hostname even on machines running systemd.
|
||||
case "$os" in
|
||||
archlinux|debian|ubuntu|devuan|centos|coreos)
|
||||
# shellcheck disable=SC2028
|
||||
echo "printf '%s\n' '$name_should' > /etc/hostname"
|
||||
echo "hostname -F /etc/hostname"
|
||||
;;
|
||||
|
@ -67,6 +68,7 @@ case "$os" in
|
|||
;;
|
||||
suse)
|
||||
echo "hostname '$name_should'"
|
||||
# shellcheck disable=SC2028
|
||||
echo "printf '%s\n' '$name_should' > /etc/HOSTNAME"
|
||||
;;
|
||||
esac
|
||||
|
|
|
@ -298,7 +298,7 @@ END
|
|||
fi
|
||||
|
||||
EOF
|
||||
|
||||
# shellcheck disable=SC2028
|
||||
echo "printf \"%s\\n%s\n%s\n\" \"\$jailheader\" \"\$jaildata\" \"\$jailtrailer\" >>\"\$jailfile\""
|
||||
|
||||
# Add $name to jail_list if $onboot=yes
|
||||
|
|
Loading…
Reference in a new issue