Fix SC2028.

remotes/origin/4.10
Darko Poljak 7 years ago
parent 0d80b4473b
commit 02f39bcf6f
  1. 6
      cdist/conf/type/__hostname/gencode-remote

@ -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

Loading…
Cancel
Save