Puppet Class: motd
- Defined in:
- manifests/init.pp
Summary
motdOverview
13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'manifests/init.pp', line 13
class motd (
Optional[String] $info = undef,
Optional[String] $warn = undef,
Variant[Enum['present', 'absent']] $ensure = 'present',
) {
file { '/etc/motd':
ensure => $ensure,
owner => 'root',
group => 'root',
mode => '0644',
content => epp('motd/motd.epp'),
}
}
|