From 57283b23aafb47608501ae0ac68c1defa7f4065c Mon Sep 17 00:00:00 2001 From: Theo Chatzimichos Date: Tue, 16 Aug 2016 17:05:47 +0200 Subject: Add target param for the unit file (#10) This is useful in case the Unit file is a symlink to another one --- manifests/unit_file.pp | 4 +++- spec/defines/unit_file_spec.rb | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) 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 +} diff --git a/spec/defines/unit_file_spec.rb b/spec/defines/unit_file_spec.rb index 0eebbd3..88a0122 100644 --- a/spec/defines/unit_file_spec.rb +++ b/spec/defines/unit_file_spec.rb @@ -33,6 +33,7 @@ describe 'systemd::unit_file' do :path => '/usr/lib/systemd/system', :content => 'some-content', :source => 'some-source', + :target => 'some-target', } } it 'creates the unit file' do @@ -40,6 +41,7 @@ describe 'systemd::unit_file' do 'ensure' => 'absent', 'content' => 'some-content', 'source' => 'some-source', + 'target' => 'some-target', }) end -- cgit v1.2.3