Jestem w stanie przetestować prosty przykład z dynamiką z fortuną na moim hoście Debian Jessie 8.2, jak poniżej, i odkryłem, że problem ten jest związany z błędnym zachowaniem.
mkdir /etc/update-motd.d
cd /etc/update-motd.d
Utworzono dwa pliki testowe, jak poniżej, i wykonano je
root@debian:/# cd /etc/update-motd.d/
root@debian:/etc/update-motd.d# ls -l
total 8
-rwxr-xr-x 1 root root 58 Dec 1 23:21 00-header
-rwxr-xr-x 1 root root 41 Dec 1 22:52 90-fortune
root@debian:/etc/update-motd.d# cat 00-header
#!/bin/bash
echo
echo 'Welcome !! This is a header'
echo
root@debian:/etc/update-motd.d# cat 90-fortune
#!/bin/bash
echo
/usr/games/fortune
echo
Jednak w tym czasie motd nie zmienił się. Więc śledzę proces sshd. Z tego śladu (interesujące części pokazano poniżej) można zobaczyć, że nowo utworzony plik motd.new zmienia nazwę na / var / run / motd. Jednak później próbuje odczytać z /run/motd.dynamic - który nigdy nie został stworzony
20318 rename("/var/run/motd.new", "/var/run/motd") = 0
20318 open("/run/motd.dynamic", O_RDONLY) = -1 ENOENT (No such file or directory)
20318 open("/etc/motd", O_RDONLY) = 8
Problem wydaje się być związany z niespójnościami z modułem pam_motd. Zobacz raport o błędzie https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=743286;msg=2
Po prostu zmiana lokalizacji pliku motd z /run/motd.dynamic
na /run/motd
in /etc/pam.d/sshd
- sprawia, że działa dla mnie
root@debian:/etc/pam.d# grep pam_motd sshd
#session optional pam_motd.so motd=/run/motd.dynamic
session optional pam_motd.so motd=/run/motd
session optional pam_motd.so noupdate
Oto przykładowy MOTD widziany podczas logowania ssh ...
Welcome !! This is a header
* Culus fears perl - the language with optional errors
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
You have new mail.
Last login: Tue Dec 1 23:49:57 2015 from x.x.x.x
pam_motd.so noupdate
byłoby problemu?