summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorTheo Chatzimichos <tampakrap@gmail.com>2016-08-16 17:05:47 +0200
committerRaphaƫl Pinson <github+aem1eeshi1@raphink.net>2016-08-16 17:05:47 +0200
commit57283b23aafb47608501ae0ac68c1defa7f4065c (patch)
treee54f3b577d4d44f6780de38cb83d38770290a097 /manifests
parente496de727fafbbfbe2cf72c9f1528a719ec0e50f (diff)
Add target param for the unit file (#10)
This is useful in case the Unit file is a symlink to another one
Diffstat (limited to 'manifests')
-rw-r--r--manifests/unit_file.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/unit_file.pp b/manifests/unit_file.pp
index 0f659db..94bc845 100644
--- a/manifests/unit_file.pp
+++ b/manifests/unit_file.pp
@@ -5,6 +5,7 @@ define systemd::unit_file(
$path = '/etc/systemd/system',
$content = undef,
$source = undef,
+ $target = undef,
) {
include ::systemd
@@ -12,9 +13,10 @@ define systemd::unit_file(
ensure => $ensure,
content => $content,
source => $source,
+ target => $target,
owner => 'root',
group => 'root',
mode => '0444',
notify => Exec['systemctl-daemon-reload'],
}
-} \ No newline at end of file
+}