You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
419 B
18 lines
419 B
#!/bin/sh |
|
mod_args="" |
|
|
|
for dasd_arg in $(getargs rd.dasd= -d rd_DASD= DASD=); do |
|
mod_args="$mod_args,$dasd_arg" |
|
done |
|
|
|
mod_args="${mod_args#*,}" |
|
|
|
if [ -x /sbin/dasd_cio_free -a -n "$mod_args" ]; then |
|
[ -d /etc/modprobe.d ] || mkdir -m 0755 -p /etc/modprobe.d |
|
echo "options dasd_mod dasd=$mod_args" >> /etc/modprobe.d/dasd_mod.conf |
|
fi |
|
|
|
unset dasd_arg |
|
if [ -x /sbin/dasd_cio_free ] ; then |
|
dasd_cio_free |
|
fi
|
|
|