16 lines
157 B
Plaintext
16 lines
157 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [[ ! -f /etc/zipl.conf ]]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
COMMAND="$1"
|
||
|
|
||
|
case "$COMMAND" in
|
||
|
add|remove)
|
||
|
zipl > /dev/null
|
||
|
;;
|
||
|
*)
|
||
|
;;
|
||
|
esac
|