[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2018-10-22 Thread GGrandes
I have same problem in Ubuntu 18.04, +2 seconds in sshd logins.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2015-12-23 Thread Landscape Builder
This bug has not seen any activity in the last 6 months, so it is being
automatically closed.

If you are still experiencing this issue, please feel free to re-open.

Landscape Team

** Changed in: landscape-client
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-08-13 Thread Till Klampaeckel
Any update, help?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-26 Thread Till Klampaeckel
Hey,

I tried your code:

1. $USER doesn't seem to be set in this context so it runs regardless.
;-) At least it doesn't seem to be set during the login.

2. Whenever I add strace, it magically works – without, it defuncts.

I looked around further and it took me a while to figure this out – so the 
offending code in my case is in here:
/usr/lib/python2.6/dist-packages/landscape/lib/sysstats.py

and imports getProcessOutputAndValue from here:
/usr/share/pyshared/twisted/internet/utils.py

I couldn't figure out how this would block, but essentially it looks
like you could pass callbacks to the function which is currently not
happending.

I was wondering if there is a way to debug this in Python. E.g. my
skills are currently limited to putting print into files. But that
doesn't work to well. ;-)

Till

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-26 Thread Till Klampaeckel
Here is an idea for a patch – but I am not sure if it actually works:

--- /usr/share/pyshared/landscape/lib/sysstats.py.orig  2012-07-26 
15:26:42.0 +
+++ /usr/share/pyshared/landscape/lib/sysstats.py   2012-07-26 
15:32:38.0 +
@@ -55,6 +55,13 @@ class MemoryStats(object):
 def get_logged_in_users():
 result = getProcessOutputAndValue(who, [-q], env=os.environ)
 
+def logged_in_users_err_callback(result):
+ Errback from getProcessOutputAndValue 
+out, err, code = result
+raise Exception(Error getting users exited %d with error: %s (%s) % 
(code, err, out))
+
+result.addErrback(logged_in_users_err_callback)
+
 def parse_output((stdout_data, stderr_data, status)):
 if status != 0:
 raise CommandError(stderr_data)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-18 Thread Andreas Hasenack
If you can reproduce it at least some times, I have some suggestions:
- hack the script to only run if you login as a certain user. In that way, you 
can trigger it by logging in as, say, ubuntu, and don't run if you login as 
someone else. Something like this (untested):

--- /usr/share/landscape/landscape-sysinfo.wrapper  2012-06-13 
18:10:15.0 -0300
+++ landscape-sysinfo.wrapper   2012-07-18 09:21:29.868717152 -0300
@@ -2,6 +2,10 @@
 cores=$(grep -c ^processor /proc/cpuinfo 2/dev/null)
 [ $cores -eq 0 ]  cores=1
 threshold=${cores:-1}.0
+if [ $USER = safeuser ]; then
+echo Not running landscape-sysinfo because logging in as user 'safeuser'
+exit 0
+fi
 if [ $(echo `cut -f1 -d ' ' /proc/loadavg`  $threshold | bc) -eq 1 ]; then
 echo
 echo -n   System information as of 

Then you can observe what happens when it stalls.

You could also use the above plus strace the landscape-sysinfo script,
but that *may* prevent the bug from happening. Something like this:

--- /usr/share/landscape/landscape-sysinfo.wrapper  2012-06-13 
18:10:15.0 -0300
+++ landscape-sysinfo.wrapper   2012-07-18 09:22:56.466115731 -0300
@@ -2,12 +2,16 @@
 cores=$(grep -c ^processor /proc/cpuinfo 2/dev/null)
 [ $cores -eq 0 ]  cores=1
 threshold=${cores:-1}.0
+if [ $USER = safeuser ]; then
+echo Not running landscape-sysinfo because logging in as user 'safeuser'
+exit 0
+fi
 if [ $(echo `cut -f1 -d ' ' /proc/loadavg`  $threshold | bc) -eq 1 ]; then
 echo
 echo -n   System information as of 
 /bin/date
 echo
-/usr/bin/landscape-sysinfo
+strace -f -o /tmp/sysinfo.strace /usr/bin/landscape-sysinfo
 else
 echo
 echo  System information disabled due to load higher than $threshold

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-16 Thread Andreas Hasenack
I tried to reproduce it a few times, but no luck. Does it happen often
to you? If yes, we may be able to come up with a debug strategy.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-16 Thread Till Klampaeckel
Well, I am a 100% sure it's /usr/bin/landscape-sysinfo. It happened
fairly consistently last week. To a point where I couldn't login at all,
unless I rebooted the instance and logged in right away. We have now
removed the landscape-client to ensure login always works.

When I ran this script while logged in, it would always work as well.
Just during the login it would block.

I'm not too familiar with python and could not step-through the twistd
code. Would you have a tip what I could do to figure out why it blocks
and doesn't let me login when I re-install landscape-client on a test
instance? I am guessing there is no general error log which would allow
me get errors from.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-13 Thread Till Klampaeckel
I have no such thing – my users are 'local'.

It's a stock 10.04.4, this is how it looks like right now:

till@statsd1:~$ ls -lah /etc/update-motd.d/
total 48K
drwxr-xr-x  2 root root 4.0K 2012-07-12 15:19 .
drwxr-xr-x 89 root root 4.0K 2012-07-13 10:25 ..
-rwxr-xr-x  1 root root   57 2010-04-23 09:45 00-header
-rwxr-xr-x  1 root root  248 2010-04-23 09:45 10-help-text
-rwxr-xr-x  1 root root   65 2010-04-13 20:45 20-cpu-checker
-rwxr-xr-x  1 root root  627 2011-09-30 07:16 51_update-motd
-rwxr-xr-x  1 root root   71 2010-04-13 20:45 90-updates-available
-rwxr-xr-x  1 root root   61 2010-10-13 07:40 91-release-upgrade
-rwxr-xr-x  1 root root 1.3K 2010-12-03 15:50 92-uec-upgrade-available
-rwxr-xr-x  1 root root  306 2011-09-30 07:16 98-cloudguest
-rwxr-xr-x  1 root root   69 2010-04-13 20:45 98-reboot-required
-rwxr-xr-x  1 root root  261 2010-04-23 09:45 99-footer

Note: I removed landscape-client (which in turn removes the offending
script from that directory) and the issues are gone.

@Andreas: Did you check out my askubuntu link
(http://askubuntu.com/a/162373/11244)? It has process list and all that.
It def. stalls at the sysinfo script and it seems like the call to who
broke.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-13 Thread Andreas Hasenack
Hi Till,

yes, I saw that askubuntu process list.

What is the AMI you used, and in which region?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-13 Thread Till Klampaeckel
I believe it's this: ami-6936fb00

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-13 Thread Till Klampaeckel
Region is 'east1'

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-12 Thread Till Klampaeckel
I'm on 10.04.4 (latest kernel, everything) and I just spent an entire
work-day debugging pam_motd behavior.

For some reason, one of the scripts fails (defuncts) when I try to log
into a server. Add to that, this server is on EC2 so there is no way to
use the terminal either.

Anyhow – for a sumary I've posted everything here:
http://askubuntu.com/a/162373/11244

The solution was to disable pam_motd in these files:

 /etc/pam.d/sshd
 /etc/pam.d/login

The lack of debugging facilities in here are one of the reasons why this
should be removed period. I don't really care if some people don't get a
pretty MOTD then.

The larger issue here is the potential block of a log in process, which
makes it severe. There seems to be no way to figure out what exactly
is wrong because you are literally logged out of the instance which is
IMHO unacceptable behavior for an LTS.

There should be at least a timeout which will eventually make the
scripts fail if they cannot complete.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pam/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-12 Thread Till Klampaeckel
I want to add that it seems like the following removes the files as
well:

apt-get purge landscape-client

I did this to avoid having to maintain pam configuration. Maybe someone
escalate it there. I still fail to understand how you can add something
to the login process which might block the user from logging in.

** Also affects: landscape-client
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-12 Thread Andreas Hasenack
landscape-common installs a script in /etc/update-motd.d to display a
banner with some basic system information.

It will not run the main landscape-sysinfo binary if the load is higher
than the number of cores, see /usr/share/landscape/landscape-
sysinfo.wrapper:

#!/bin/sh
cores=$(grep -c ^processor /proc/cpuinfo 2/dev/null)
[ $cores -eq 0 ]  cores=1
threshold=${cores:-1}.0
if [ $(echo `cut -f1 -d ' ' /proc/loadavg`  $threshold | bc) -eq 1 ]; then
echo
echo -n   System information as of 
/bin/date
echo
/usr/bin/landscape-sysinfo
else
echo
echo  System information disabled due to load higher than $threshold
fi

Do you think it was landscape-sysinfo running that made your login take
more than 60s and thus timeout?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-12 Thread Till Klampaeckel
My login session never timeout, I was actually authenticated but never
saw a prompt.

I let it running (sitting there) over night and the shell was still
'active' there after 8 hours – but no prompt.

The load had nothing to do with this. I booted the server (pretty
blank), logged in and then further attempts failed right away. If I
waited too long (and I don't have an exact time), I could not log in at
all.

I *think* it stalled at trying to find out how many people are logged in
to the system. I saw a [who] defunct in my process list. But I have no
idea why that caused the my login process to block.

I looked at this script and also ran it while I was logged in and it
completely within reason. Though I would say that it adds too much time
to the login still. It's a noticable delay.

Btw, check out the 'ask ubuntu' link I left in my comment, it contains
the process list with the defunct who and the sysinfo script running.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-12 Thread Andreas Hasenack
Do you have any reason to believe who would stall? Do you have network
users, stored in ldap or nis? Doesn't look like it, but it doesn't hurt
to ask.

sysinfo uses this to get the logged in users:

def get_logged_in_users():
result = getProcessOutputAndValue(who, [-q], env=os.environ)

So basically it calls who -q.

What are all the scripts you have in /etc/update-motd.d/*?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2011-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-core-dev/pam/ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pam/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2011-10-30 Thread Launchpad Bug Tracker
This bug was fixed in the package pam - 1.1.3-5ubuntu1

---
pam (1.1.3-5ubuntu1) precise; urgency=low

  * Merge from Debian unstable.  Remaining changes:
- debian/libpam-modules.postinst: Add PATH to /etc/environment if it's
  not present there or in /etc/security/pam_env.conf. (should send to
  Debian).
- debian/libpam0g.postinst: only ask questions during update-manager when
  there are non-default services running.
- Change Vcs-Bzr to point at the Ubuntu branch.
- debian/patches-applied/series: Ubuntu patches are as below ...
- debian/patches-applied/ubuntu-rlimit_nice_correction: Explicitly
  initialise RLIMIT_NICE rather than relying on the kernel limits.
- debian/patches-applied/pam_motd-legal-notice: display the contents of
  /etc/legal once, then set a flag in the user's homedir to prevent
  showing it again.
- debian/update-motd.5, debian/libpam-modules.manpages: add a manpage
  for update-motd, with some best practices and notes of explanation.
- debian/patches/update-motd-manpage-ref: add a reference in pam_motd(8)
  to update-motd(5)
- debian/libpam0g.postinst: drop kdm from the list of services to
  restart.
- debian/libpam0g.postinst: check if gdm is actually running before
  trying to reload it.
- debian/local/common-session{,-noninteractive}: Enable pam_umask by
  default, now that the umask setting is gone from /etc/profile.
- debian/local/pam-auth-update: Add the new md5sums for pam_umask addition.
- add debian/patches-applied/pam_umask_usergroups_from_login.defs.patch:
  Deprecate pam_unix' explicit usergroups option and instead read it
  from /etc/login.def's USERGROUP_ENAB option if umask is only defined
  there. This restores compatibility with the pre-PAM behaviour of login.
  (Closes: #583958)
  * Dropped changes, included in Debian:
- debian/patches-applied/CVE-2011-3148.patch
- debian/patches-applied/CVE-2011-3149.patch
- debian/patches-applied/update-motd: updated to use clean environment
  and absolute paths in modules/pam_motd/pam_motd.c.
  * debian/libpam0g.postinst: the init script for 'samba' is now named 'smbd'
in Ubuntu, so fix the restart handling.
  * debian/patches-applied/update-motd: set a sane umask before calling
run-parts, and restore the old mask afterwards, so /run/motd gets
consistent permissions.  LP: #871943.
  * debian/patches-applied/update-motd: new module option for pam_motd,
'noupdate', which suppresses the call to run-parts /etc/update-motd.d.
LP: #805423.

pam (1.1.3-5) unstable; urgency=low

  [ Kees Cook ]
  * debian/patches-applied/pam_unix_dont_trust_chkpwd_caller.patch: use
setresgid() to wipe out saved-gid just in case.
  * debian/patches-applied/008_modules_pam_limits_chroot:
- fix off-by-one when parsing configuration file.
- when using chroot, chdir() to root to lose links to old tree.
  * debian/patches-applied/022_pam_unix_group_time_miscfixes,
debian/patches-applied/026_pam_unix_passwd_unknown_user,
debian/patches-applied/054_pam_security_abstract_securetty_handling:
improve descriptions.
  * debian/patches-applied/{007_modules_pam_unix,055_pam_unix_nullok_secure}:
drop unneeded no-op change to reduce delta from upstream.
  * debian/patches-applied/hurd_no_setfsuid: check all set*id() calls.
  * debian/patches-applied/update-motd: correctly clear environment when
building motd.
  * debian/patches-applied/pam_env-fix-overflow.patch: fix stack overflow
in environment file parsing (CVE-2011-3148).
  * debian/patches-applied/pam_env-fix-dos.patch: fix DoS in environment
file parsing (CVE-2011-3149).

pam (1.1.3-4) unstable; urgency=low

  * Make sure shared library links are also installed to the multiarch
directory, not just the .a files; otherwise the static libs get found
first by the linker.  Thanks to Russ Allbery for catching this.
Closes: #642952.

pam (1.1.3-3) unstable; urgency=low

  * Look for /etc/init.d/postgresql, not /etc/init.d/postgresql-8.{2,3},
for service restarts; the latter are obsolete since squeeze.
Closes: #631511.
  * Move debian/libpam0g-dev.install to debian/libpam0g-dev.install.in
and substitute the multiarch path at build time, so our .a files go to
the multiarch dir instead of to /usr/lib.  Thanks to Riku Voipio for
pointing out the bug.
  * debian/control: adjust the package descriptions, as the current ones
use some awkward language that's gone unnoticed for a long time.  Thanks
to Martin Eberhard Schauer martin.e.scha...@gmx.de for pointing this
out.  Closes: #633863.
  * Build-depend on debhelper 8.9.4 and bump debian/compat to 9 for
dpkg-buildflags integration, and drop manual setting of -g -O options in
CFLAGS now that we can let dh do it for us
  * Don't set --sbindir when calling configure; upstream takes care of this
for us
 -- Steve Langasek 

[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2011-07-08 Thread Jan K.
check_by_ssh does not open a tty. So it should not calculate the motd. I
did not thing about that. May be it could solve the nagios problem, too.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805423

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pam/+bug/805423/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs