summaryrefslogtreecommitdiff
path: root/manifests/unit_file.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2017-01-16 13:34:48 +0100
committervarac <varacanero@zeromail.org>2017-01-16 13:34:48 +0100
commitf3c4059603a6ac19f132b0dc47b95e49d9ddc4ba (patch)
treed538ad5f49dc31a3bf10029a2c875b729048cdc0 /manifests/unit_file.pp
parentdc76f6f69e306f865a4a7c3b78b6d5ba694719c5 (diff)
parenta0321364514f52a4c110a15afbdad5109d768fe6 (diff)
Merge remote-tracking branch 'camptocamp/master'HEADmaster
Diffstat (limited to 'manifests/unit_file.pp')
-rw-r--r--manifests/unit_file.pp22
1 files changed, 22 insertions, 0 deletions
diff --git a/manifests/unit_file.pp b/manifests/unit_file.pp
new file mode 100644
index 0000000..94bc845
--- /dev/null
+++ b/manifests/unit_file.pp
@@ -0,0 +1,22 @@
+# -- Define: systemd::unit_file
+# Creates a unit file and reloads systemd
+define systemd::unit_file(
+ $ensure = file,
+ $path = '/etc/systemd/system',
+ $content = undef,
+ $source = undef,
+ $target = undef,
+) {
+ include ::systemd
+
+ file { "${path}/${title}":
+ ensure => $ensure,
+ content => $content,
+ source => $source,
+ target => $target,
+ owner => 'root',
+ group => 'root',
+ mode => '0444',
+ notify => Exec['systemctl-daemon-reload'],
+ }
+}