generated from alice-meta-packages/alice-meta-template
16 lines
297 B
Bash
Executable File
16 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
db_get alice-auth/ldap-bind-password
|
|
CONFIG=/etc/sssd/sssd.conf
|
|
|
|
if [ ! -f "$CONFIG" ]; then
|
|
echo "Error: Configuration file $CONFIG does not exist."
|
|
exit 10
|
|
fi
|
|
|
|
sed -i "s/ldap_default_authtok =.*/ldap_default_authtok = $RET/" $CONFIG
|