%PDF- %PDF-
| Direktori : /var/lib/dpkg/info/ |
| Current File : //var/lib/dpkg/info/veeam-libs.postinst |
#!/bin/sh
set -e
PATH=$PATH:/usr/sbin
GROUP="veeam"
case "$1" in
configure)
if ! getent group $GROUP >/dev/null; then
groupadd --system $GROUP
fi
chgrp $GROUP /usr/sbin/veeamworker
chgrp $GROUP /usr/bin/veeamconfig
;;
esac