a2cf97ec56
- lszcrypt fails when querying a specific domain (#2177613) - DASD autoquiesce support (#2196510) - zcrypt DD: AP command filtering (#2170362) - vmconvert and zgetdump consolidation (#2173925) - Support for List-Directed dump from ECKD DASD (#2159694) - Support for List-Directed IPL and re-IPL from ECKD DASD (#2159691) - Resolves: #2159698 #2177613 #2196510 #2170362 #2173925 #2159694 #2159691
16 lines
157 B
Bash
Executable File
16 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ ! -f /etc/zipl.conf ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
COMMAND="$1"
|
|
|
|
case "$COMMAND" in
|
|
add|remove)
|
|
zipl > /dev/null
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|