diff options
author | Steve Langasek <vorlon@debian.org> | 2011-10-30 13:56:30 -0400 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2019-01-08 22:11:47 -0800 |
commit | b9be7e5cd90c8a557dbf03e81a8466a6fdeb31bf (patch) | |
tree | e8de18ab1d28da159f098b6cf8d5ace4c05e55d1 /debian/libpam0g.postinst | |
parent | c496f9d5d5981ddb151f1060bb564c5fb710370e (diff) | |
download | pam-b9be7e5cd90c8a557dbf03e81a8466a6fdeb31bf.tar.gz pam-b9be7e5cd90c8a557dbf03e81a8466a6fdeb31bf.tar.bz2 pam-b9be7e5cd90c8a557dbf03e81a8466a6fdeb31bf.zip |
debian/libpam0g.postinst: according to Kubuntu developers, kdm no longer
keeps libpam loaded persistently at runtime, so it's not necessary to
force a kdm restart on ABI bump. Which is good, since restarting kdm
now seems to also log users out of running sessions, which we rather
want to avoid. Closes: #632673, LP: #744944.
Diffstat (limited to 'debian/libpam0g.postinst')
-rw-r--r-- | debian/libpam0g.postinst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/libpam0g.postinst b/debian/libpam0g.postinst index e26e34ea..eca8957e 100644 --- a/debian/libpam0g.postinst +++ b/debian/libpam0g.postinst @@ -106,7 +106,7 @@ then check="$check vsftpd wu-ftpd wzdftpd xrdp yardradius yaws" if ! who | awk '{print $2}'|grep -q ':[0-9]'; then - check="$check kdm wdm xdm" + check="$check wdm xdm" fi echo "Checking init scripts..." @@ -171,7 +171,7 @@ then if who | awk '{print $2}' | grep -q ':[0-9]'; then dms="" - for service in kdm wdm xdm; do + for service in wdm xdm; do case "$services" in *$service*) ;; *) dms="$dms $service" |