Package freeipa-client-epn: Scripts

Post install

1
2
3
4
# first installation
if [ $1 -eq 1 ]; then
    systemctl -q preset ipa-epn.{service,timer} ||:
fi
Pre uninstall

1
2
3
4
# removal (not upgrade)
if [ $1 -eq 0 ]; then
    systemctl --no-reload -q disable --now ipa-epn.{service,timer} ||:
fi