diff options
Diffstat (limited to 'community/lxcfs/lxcfs.initd')
-rw-r--r-- | community/lxcfs/lxcfs.initd | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/community/lxcfs/lxcfs.initd b/community/lxcfs/lxcfs.initd index 1a6e9c9759..557326e7a2 100644 --- a/community/lxcfs/lxcfs.initd +++ b/community/lxcfs/lxcfs.initd @@ -19,16 +19,8 @@ depend() { } start_pre() { - local module= checkpath --directory ${VARDIR} - for module in fuse autofs4; do - if ! $(lsmod | grep -q ^$module); then - eerror "Enable module: $module" - eerror "modprobe $module" - eerror "echo $module >> /etc/modules" - eend 1 - fi - done + modprobe fuse autofs4 } find_perms() { |