venmo / puppet-updatemotd

Puppet module for update-motd/pam_motd on Ubuntu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

updatemotd

Puppet module for managing update-motd(5) on Ubuntu systems.

Example usage

Include with default parameters:

include updatemotd

Define some static content for motd.tail(5):

class { 'updatemotd':
  content => 'Welcome, humanoid!',
}

Manage more advanded scripted content:

class { 'updatemotd':
  purge_directory => true,
}
updatemotd::script { 'important':
  content => '#!/bin/bash\nexec uptime\n',
}

License

See LICENSE file.

About

Puppet module for update-motd/pam_motd on Ubuntu

License:MIT License


Languages

Language:Ruby 60.5%Language:Puppet 39.5%