summaryrefslogtreecommitdiffstats
path: root/modules.d/95lunmask/parse-lunmask.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xmodules.d/95lunmask/parse-lunmask.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules.d/95lunmask/parse-lunmask.sh b/modules.d/95lunmask/parse-lunmask.sh
index 5e05e5b..147e3de 100755
--- a/modules.d/95lunmask/parse-lunmask.sh
+++ b/modules.d/95lunmask/parse-lunmask.sh
@@ -32,8 +32,9 @@ for lunmask_arg in $(getargs rd.lunmask); do
IFS="$OLDIFS"
if [ -d /sys/module/scsi_mod ]; then
printf "manual" > /sys/module/scsi_mod/parameters/scan
- elif [ ! -f /etc/modprobe.d/95lunmask.conf ]; then
- echo "options scsi_mod scan=manual" > /etc/modprobe.d/95lunmask.conf
+ elif [ ! -f /run/modprobe.d/95lunmask.conf ]; then
+ mkdir -p /run/modprobe.d
+ echo "options scsi_mod scan=manual" > /run/modprobe.d/95lunmask.conf
fi
create_udev_rule "$1" "$2" "$3"
)