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