From: Harald Hoyer Date: Wed, 6 Mar 2013 16:06:15 +0000 (+0100) Subject: usrmount: in systemd mode, functionality is in systemd X-Git-Tag: 026~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fe654ff0aa3066a2232ba9b9fb729bd5b919500e;p=thirdparty%2Fdracut.git usrmount: in systemd mode, functionality is in systemd --- diff --git a/modules.d/98usrmount/module-setup.sh b/modules.d/98usrmount/module-setup.sh index 69d22d892..5d81d152a 100755 --- a/modules.d/98usrmount/module-setup.sh +++ b/modules.d/98usrmount/module-setup.sh @@ -12,6 +12,9 @@ depends() { } install() { - inst_hook pre-pivot 50 "$moddir/mount-usr.sh" + if ! dracut_module_included "systemd"; then + inst_hook pre-pivot 50 "$moddir/mount-usr.sh" + fi + : }