aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/motd.pp
blob: 0ed8cbe83cfd23b3fbba5a66f4137c48c049ceb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
class nodo::subsystem::motd(
  $network_name = hiera('nodo::subsystem::motd::network_name', 'Nodo')
) {
  file { "/etc/motd":
    owner   => "root",
    group   => "root",
    mode    => 0644,
    ensure  => file,
    content => "This is ${::fqdn} from the ${network_name}.\n",
  }
}