Skip to content

Instantly share code, notes, and snippets.

@bleach
Created October 2, 2013 12:15
Show Gist options
  • Save bleach/6792791 to your computer and use it in GitHub Desktop.
Save bleach/6792791 to your computer and use it in GitHub Desktop.
Cowsay motd. cowsay must be installed on the puppetmaster
<%= %x{/usr/games/cowsay -f #{cowfile} #{message}} %>
define songkick_utils::cowsay_motd ($message, $cowfile='default', $ensure='present') {
file { '/var/run/motd':
ensure => $ensure,
content => template('songkick_utils/cowsay_motd.erb'),
owner => root,
group => root,
mode => 0644,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment