diff options
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown index 68bc757..62b9209 100644 --- a/README.markdown +++ b/README.markdown @@ -23,6 +23,8 @@ Puppet modules on this server: -- MySQL </pre> +Local sysadmins can also append to the file by just editing /etc/motd.local +their changes will be incorporated into the puppet managed motd. <pre> # class to setup basic motd, include on all nodes @@ -37,6 +39,13 @@ class motd { content => "\nPuppet modules on this server:\n\n", order => 1, } + + # local users on the machine can append to motd by just creating + # /etc/motd.local + concat::fragment{"motd_local": + ensure => "/etc/motd.local", + order => 15 + } } # used by other modules to register themselves in the motd |