diff --git a/debian/login.postinst b/debian/login.postinst index f4c3ce02..8f3ef552 100644 --- a/debian/login.postinst +++ b/debian/login.postinst @@ -2,18 +2,6 @@ set -e -if test "$1" = configure -then - if test -f /etc/init.d/logoutd - then - if test "$(md5sum /etc/init.d/logoutd)" = "9080f92783dd53f6f2108e698c06bd53 /etc/init.d/logoutd" - then - echo "removing logoutd cruft" - rm /etc/init.d/logoutd - update-rc.d logoutd remove - fi - fi -fi if [ "$1" = "configure" ]; then # Install faillog during initial installs only @@ -37,19 +25,6 @@ if [ "$1" = "configure" ]; then fi fi - # Create subuid/subgid if missing - if [ ! -e /etc/subuid ]; then - touch /etc/subuid - chown root:root /etc/subuid - chmod 644 /etc/subuid - fi - - if [ ! -e /etc/subgid ]; then - touch /etc/subgid - chown root:root /etc/subgid - chmod 644 /etc/subgid - fi - #DEBHELPER# exit 0