┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/usr/lib/dracut/modules.d/95lunmask
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: parse-lunmask.sh
#!/usr/bin/sh # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- # ex: ts=8 sw=4 sts=4 et filetype=sh create_udev_rule() { local transport="$1" local tgtid="$2" local lun="$3" local _rule=/etc/udev/rules.d/51-"${transport}"-lunmask-"${tgtid}".rules [ -e "${_rule}" ] && return 0 if [ ! -f "$_rule" ]; then if [ "$transport" = "fc" ]; then cat > "$_rule" << EOF ACTION=="add", SUBSYSTEM=="fc_remote_ports", ATTR{port_name}=="$tgtid", PROGRAM="fc_transport_scan_lun.sh $lun" EOF elif [ "$transport" = "sas" ]; then cat > "$_rule" << EOF ACTION=="add", SUBSYSTEM=="sas_device", ATTR{sas_address}=="$tgtid", PROGRAM="sas_transport_scan_lun.sh $lun" EOF fi fi } for lunmask_arg in $(getargs rd.lunmask); do ( local OLDIFS="$IFS" local IFS="," # shellcheck disable=SC2086 set $lunmask_arg IFS="$OLDIFS" if [ -d /sys/module/scsi_mod ]; then printf "manual" > /sys/module/scsi_mod/parameters/scan 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" ) done
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 fc_transport_scan_lun.sh
SH
575 B
2025-05-01 10:52
EDIT
📄 module-setup.sh
SH
2.3 KB
2025-05-01 10:52
EDIT
📄 parse-lunmask.sh
SH
1.3 KB
2025-05-01 10:52
EDIT
📄 sas_transport_scan_lun.sh
SH
581 B
2025-05-01 10:52
EDIT