void-packages/srcpkgs/NetAuth-ldap/INSTALL

13 lines
339 B
Plaintext
Raw Normal View History

2020-08-24 06:19:53 +02:00
case "${ACTION}" in
post)
# Set CAP_NET_BIND_SERVICE capability or exit gracefully if we cannot set the capability
# due to invalid permissions (fakeroot install).
set +e
setcap 'cap_net_bind_service=+ep' /usr/bin/ldap
if [ $? -ne 0 ]; then
echo "ERROR: failed to set cap_net_bind_service capability on ldap."
exit 0
fi
;;
esac