From 2aa652349ca83198581cccb516a241a8d0e1b4d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B3hann=20B=2E=20Gu=C3=B0mundsson?= Date: Thu, 22 Apr 2021 12:19:42 +0000 Subject: [PATCH] fix(systemd-hostnamed): extra quote --- modules.d/01systemd-hostnamed/module-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules.d/01systemd-hostnamed/module-setup.sh b/modules.d/01systemd-hostnamed/module-setup.sh index 79f4411529..ff73a4a269 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 }