8 lines
129 B
Puppet
8 lines
129 B
Puppet
|
class motd {
|
||
|
file { '/etc/motd':
|
||
|
source => 'puppet:///modules/motd/motd',
|
||
|
owner => root,
|
||
|
group => root,
|
||
|
}
|
||
|
}
|