void-packages/srcpkgs/vault/INSTALL
2021-08-29 20:26:08 -05:00

12 lines
312 B
Text

case "${ACTION}" in
post)
# Set CAP_IPC_LOCK capability or exit gracefully if we cannot
# set the capability due to invalid permissions (fakeroot
# install).
setcap 'cap_ipc_lock=+ep' /usr/bin/vault
if [ $? -ne 0 ]; then
echo "ERROR: failed to set cap_ipc_lock capability on vault."
exit 0
fi
;;
esac