s390utils/91-zipl.install
Troy Dawson f2e178576b RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/s390utils#1b3563184907d74fc54a3ae6c0393d330c2a79fa
2020-10-15 09:15:43 -07:00

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