Puppet Class: conf::config::systemd
- Inherits:
- conf::install::systemd
- Inherited by:
-
conf::setup::systemd
- Defined in:
- manifests/config/systemd.pp
Summary
A short summary of the purpose of this classOverview
A description of what this class does
7 8 9 10 11 12 13 14 15 16 |
# File 'manifests/config/systemd.pp', line 7
class conf::config::systemd() inherits conf::install::systemd {
exec { '/bin/systemctl daemon-reload':
cwd => '/lib/systemd',
refreshonly => true,
}
Package['systemd'] -> Exec['/bin/systemctl daemon-reload']
Exec['/bin/systemctl daemon-reload'] -> Service<| |>
}
|