f2e178576b
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/s390utils#1b3563184907d74fc54a3ae6c0393d330c2a79fa
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
|