dracut/0041-nfs-module-setup.sh-Use-colon-instead-of-dot-for-cho.patch
Harald Hoyer b386772815 dracut-044-75
- fix for systemd >= 230
- git snapshot
2016-06-07 10:24:44 +02:00

23 lines
828 B
Diff

From dec3dfa4b3215e08581794bd76591023ed7984c8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= <ville.skytta@iki.fi>
Date: Mon, 28 Mar 2016 11:39:36 +0300
Subject: [PATCH] nfs/module-setup.sh: Use colon instead of dot for chown
user/group separator
---
modules.d/95nfs/module-setup.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules.d/95nfs/module-setup.sh b/modules.d/95nfs/module-setup.sh
index aefbc2a..6f039bd 100755
--- a/modules.d/95nfs/module-setup.sh
+++ b/modules.d/95nfs/module-setup.sh
@@ -113,6 +113,6 @@ install() {
chmod 770 "$initdir/var/lib/rpcbind"
grep -q '^rpc:' /etc/passwd \
&& grep -q '^rpc:' /etc/group \
- && chown rpc.rpc "$initdir/var/lib/rpcbind"
+ && chown rpc:rpc "$initdir/var/lib/rpcbind"
dracut_need_initqueue
}