Fix SC2028.

This commit is contained in:
Darko Poljak 2018-10-05 15:08:25 +02:00
parent 0d80b4473b
commit 02f39bcf6f
1 changed files with 2 additions and 4 deletions

View File

@ -59,8 +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"
printf "printf '%s\\n' '$name_should' > /etc/hostname\\n"
echo "hostname -F /etc/hostname"
;;
freebsd|openbsd)
@ -68,8 +67,7 @@ case "$os" in
;;
suse)
echo "hostname '$name_should'"
# shellcheck disable=SC2028
echo "printf '%s\n' '$name_should' > /etc/HOSTNAME"
printf "printf '%s\\n' '$name_should' > /etc/HOSTNAME\\n"
;;
esac