2016-02-01 17:00:34 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# postinst script for ahenk
|
|
|
|
#
|
|
|
|
# see: dh_installdeb(1)
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
configure)
|
2016-06-17 18:21:24 +03:00
|
|
|
|
|
|
|
while true; do
|
|
|
|
read -p "If any 'pam' configuration exists, it will be gone.Do you want to continue?" yn
|
|
|
|
case $yn in
|
|
|
|
[Yy]* )
|
|
|
|
if [ -d /etc/pam.d ]
|
|
|
|
then
|
|
|
|
if [ -f /etc/pam.d/common-session ]
|
|
|
|
then
|
|
|
|
|
|
|
|
sed -i '/pam_script.so/d' /etc/pam.d/common-session
|
|
|
|
echo "session required pam_script.so" >> /etc/pam.d/common-session
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
break;;
|
|
|
|
[Nn]* ) exit;;
|
|
|
|
* ) echo "Please answer y(yes) or n(no).";;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
|
2016-02-01 17:00:34 +02:00
|
|
|
systemctl --system daemon-reload
|
|
|
|
systemctl enable ahenk.service
|
|
|
|
|
|
|
|
update-rc.d ahenk defaults
|
|
|
|
/etc/init.d/ahenk start
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|