From: Jóhann B. Guðmundsson Date: Thu, 22 Apr 2021 12:19:42 +0000 (+0000) Subject: fix(systemd-hostnamed): extra quote X-Git-Tag: 054~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2aa652349ca83198581cccb516a241a8d0e1b4d9;p=thirdparty%2Fdracut.git fix(systemd-hostnamed): extra quote --- diff --git a/modules.d/01systemd-hostnamed/module-setup.sh b/modules.d/01systemd-hostnamed/module-setup.sh index 79f441152..ff73a4a26 100755 --- a/modules.d/01systemd-hostnamed/module-setup.sh +++ b/modules.d/01systemd-hostnamed/module-setup.sh @@ -5,7 +5,7 @@ # Prerequisite check(s) for module. check() { - # If the binary(s) requirements are not fulfilled the module can't be installed + # If the binary(s) requirements are not fulfilled the module can't be installed. require_binaries hostnamectl || return 1 require_binaries "$systemdutildir"/systemd-hostnamed || return 1 @@ -44,6 +44,6 @@ install() { inst_multiple -H -o \ /etc/hostname \ "$systemdsystemconfdir"/systemd-hostnamed.service \ - "$systemdsystemconfdir"/systemd-hostnamed.service.d/*.conf" + "$systemdsystemconfdir/systemd-hostnamed.service.d/*.conf" fi }