diff options
Diffstat (limited to 'debian/sssd-proxy.postinst')
-rw-r--r-- | debian/sssd-proxy.postinst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/sssd-proxy.postinst b/debian/sssd-proxy.postinst new file mode 100644 index 0000000..3a34f2e --- /dev/null +++ b/debian/sssd-proxy.postinst @@ -0,0 +1,12 @@ +#!/bin/sh +set -e + +LIBDIR=/usr/libexec/sssd + +case "$1" in + configure) + chmod 0750 $LIBDIR/proxy_child + ;; +esac + +#DEBHELPER# |