s390utils/SOURCES/91-zipl.install

16 lines
157 B
Plaintext
Raw Permalink Normal View History

2020-09-08 08:38:26 +00:00
#!/bin/bash
if [[ ! -f /etc/zipl.conf ]]; then
exit 0
fi
COMMAND="$1"
case "$COMMAND" in
add|remove)
zipl > /dev/null
;;
*)
;;
esac