pam_motd.so
[
motd=/path/filename
]
pam_motd is a PAM module that can be used to display arbitrary motd (message of the day) files after a successful login.
By default, pam_motd shows files in the followiing locations:
/etc/motd
/run/motd
/usr/lib/motd
/etc/motd.d/
/run/motd.d
/usr/lib/motd.d
Each message size is limited to 64KB.
If /etc/motd
does not exists, then /run/motd
is shown, then /usr/lib/motd
is shown. Similar overriding behavior applies to the directories.
Files in the directories listed above are displayed in lexicographic order by name. Moreover, the files are filtered by reading them with the credentials of the target user authenticating on the system
To silence a message, a symbolic link with target /dev/null
may be placed in /etc/motd.d
with the same filename as the message to be silenced.
motd=/path/filename
The /path/filename
file is displayed
as message of the day. Multiple paths to try can be specified as a colon-separated list.
By default this option is set to /etc/motd:/run/motd:/usr/lib/motd
motd_dir=/path/dirname.d
The /path/dirname.d
directory is scanned and each file contained inside of it is displayed. Multiple directories to scan can be specified as a colon-separated list.
By default this option is set to etc/motd.d:/run/motd.d:/usr/lib/motd.d