6.21. pam_motd - display the motd file

pam_motd.so [ motd=/path/filename ]

6.21.1. DESCRIPTION

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.

6.21.2. OPTIONS

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

6.21.3. MODULE TYPES PROVIDED

Only the session module type is provided.

6.21.4. RETURN VALUES

PAM_IGNORE

This is the only return value of this module.

6.21.5. EXAMPLES

The suggested usage for /etc/pam.d/login is:

session  optional  pam_motd.so
      

6.21.6. AUTHOR

pam_motd was written by Ben Collins <bcollins@debian.org>.