Puppet Class: systemd
Overview
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'manifests/init.pp', line 4
class systemd inherits systemd::params {
Exec {
path => '/bin:/sbin:/usr/bin:/usr/sbin',
}
exec { 'systemctl daemon-reload':
command => 'systemctl daemon-reload',
refreshonly => true,
}
#TODO: compatibility, to be removed in the future
exec { 'systemctl reload':
command => 'systemctl daemon-reload',
refreshonly => true,
}
}
|