summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWulf C. Krueger <philantrop@exherbo.org>2011-04-20 22:19:42 +0200
committerLennart Poettering <lennart@poettering.net>2011-04-20 22:52:10 +0200
commitaf49ec2c7de8698da61114c9e1ddfc8a8b9802c8 (patch)
treebbae1445802babc35a5fdbeb0827313640a0fc01
parent9402841ef197e485061ab328edcaa0e6d83051bd (diff)
mount: Allow creating mount units for /var/lib/nfs/rpc_pipefs and /proc/fs/nfsd.
Mounting /var/lib/nfs/rpc_pipefs and /proc/fs/nfsd is required by rpcbind and the NFS server respectively. To depend on them being mounted, systemd needs to be allowed to create mount units for both in order to avoid having to implement hacks (mounting in ExecStartPre or using shell scripts).
-rw-r--r--src/mount-setup.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mount-setup.c b/src/mount-setup.c
index 3b97fe4aa5..db5c253708 100644
--- a/src/mount-setup.c
+++ b/src/mount-setup.c
@@ -64,9 +64,7 @@ static const MountPoint mount_table[] = {
static const char * const ignore_paths[] = {
"/selinux",
- "/proc/bus/usb",
- "/var/lib/nfs/rpc_pipefs",
- "/proc/fs/nfsd"
+ "/proc/bus/usb"
};
bool mount_point_is_api(const char *path) {