]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
fix(systemd-hostnamed): extra quote
authorJóhann B. Guðmundsson <johannbg@gmail.com>
Thu, 22 Apr 2021 12:19:42 +0000 (12:19 +0000)
committerHarald Hoyer <harald@hoyer.xyz>
Thu, 22 Apr 2021 13:10:15 +0000 (15:10 +0200)
modules.d/01systemd-hostnamed/module-setup.sh

index 79f44115297516f6e236b2f0e29b6f0480a3198a..ff73a4a269c3d8e3430800ac069e3985957a3ceb 100755 (executable)
@@ -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
 }