blob: f70bcb0c04f79867fad709f0fc74ee5345b9ff78 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 | # Systemd
[](https://forge.puppetlabs.com/camptocamp/systemd)
[](https://travis-ci.org/camptocamp/puppet-systemd)
## Overview
This module declares exec resources that you can use when you change systemd units or configuration files.
## Examples
### systemctl --daemon-reload
```puppet
include ::systemd
file { '/usr/lib/systemd/system/foo.service':
  ensure => file,
  owner  => 'root',
  group  => 'root',
  mode   => '0644',
  source => "puppet:///modules/${module_name}/foo.service",
} ~>
Exec['systemctl-daemon-reload']
```
### systemd-tmpfiles --create
```puppet
include ::systemd
file { '/etc/tmpfiles.d/foo.conf':
  ensure => file,
  owner  => 'root',
  group  => 'root',
  mode   => '0644',
  source => "puppet:///modules/${module_name}/foo.conf",
} ~>
Exec['systemd-tmpfiles-create']
```
 |