summaryrefslogtreecommitdiffstats
path: root/modules.d/95dasd/parse-dasd.sh
diff options
context:
space:
mode:
Diffstat (limited to 'modules.d/95dasd/parse-dasd.sh')
-rwxr-xr-xmodules.d/95dasd/parse-dasd.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules.d/95dasd/parse-dasd.sh b/modules.d/95dasd/parse-dasd.sh
new file mode 100755
index 0000000..cda3970
--- /dev/null
+++ b/modules.d/95dasd/parse-dasd.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+for dasd_arg in $(getargs rd.dasd= -d rd_DASD= DASD=); do
+ (
+ local OLDIFS="$IFS"
+ IFS=","
+ # shellcheck disable=SC2086
+ set -- $dasd_arg
+ IFS="$OLDIFS"
+ echo "$@" | normalize_dasd_arg >> /etc/dasd.conf
+ )
+done