Skip to content

Commit 735f973

Browse files
author
Michael Haslgrübler
committed
Merge pull request #10 from haw-hh-ai-lab/add_standalone_master_record
Add standalone master record
2 parents cd199a0 + b1fbf54 commit 735f973

File tree

2 files changed

+65
-11
lines changed

2 files changed

+65
-11
lines changed

manifests/config/mastercf.pp

+26-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,25 @@
33
# define to build up master.cf
44
#
55
# === Parameters
6+
# ensure = (Default: present)
7+
# type = (Default: 'unix')
8+
# private = (Default: '-')
9+
# unprivileged = (Default: '-')
10+
# chroot = (Default: '-')
11+
# wakeup = (Default: '-')
12+
# limit = (Default: '-')
13+
# command = (Default: 'echo',
14+
# options = a hash of option, value pairs, creating '-o <option>=<value>'
15+
# statements after the command. Any options in this hash will
16+
# be placed after any options written directly with the command.
17+
# (Default is empty)
618
#
719
# === Variables
820
#
921
# === Authors
1022
#
1123
# mjhas@github
24+
#
1225
define postfix::config::mastercf (
1326
$ensure = present,
1427
$type = 'unix',
@@ -17,13 +30,24 @@
1730
$chroot = '-',
1831
$wakeup = '-',
1932
$limit = '-',
20-
$command = 'echo',) {
33+
$command = 'echo',
34+
$options = undef,) {
2135
Augeas {
2236
context => '/files/etc/postfix/master.cf',
2337
notify => Service['postfix'],
2438
require => Exec['postfix'],
2539
}
2640

41+
if is_hash($options) {
42+
$option_line = join (prefix (join_keys_to_values($options, '='), '-o '), ' ')
43+
} elsif is_string($options) {
44+
warning("parameter options should be a hash of options and values")
45+
$option_line = $options
46+
} else {
47+
fail("invalid format for parameter 'options', should be hash, but may be string")
48+
}
49+
$full_command = rstrip("${command} ${option_line}")
50+
2751
case $ensure {
2852
present : {
2953
augeas { "postfix master.cf ${name}":
@@ -34,7 +58,7 @@
3458
"set ${name}/chroot ${chroot}",
3559
"set ${name}/wakeup ${wakeup}",
3660
"set ${name}/limit ${limit}",
37-
"set ${name}/command '${command}'",
61+
"set ${name}/command '${full_command}'",
3862
],
3963
}
4064
}

spec/defines/mastercf_spec.rb

+39-9
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,17 @@
4141
let(:facts) { {:operatingsystem => 'Debian', :operatingsystemrelease => '7.1'} }
4242
let(:title) { 'qmgr' }
4343
let(:params) { {
44-
:ensure => 'present',
45-
:type => 'unix',
46-
:private => '-',
47-
:unprivileged => 'n',
48-
:chroot => 'n',
49-
:wakeup => '-',
50-
:limit => '-',
51-
:command => 'virtual',
44+
:ensure => 'present',
45+
:type => 'unix',
46+
:private => '-',
47+
:unprivileged => 'n',
48+
:chroot => 'n',
49+
:wakeup => '-',
50+
:limit => '-',
51+
:command => 'virtual',
5252
} }
5353
it 'should have an augeas resource' do
54-
should contain_augeas('postfix master.cf qmgr')
54+
should contain_augeas('postfix master.cf qmgr')
5555
end
5656
describe_augeas 'postfix master.cf qmgr', :lens => 'postfix_master', :target => 'etc/postfix/master.cf' do
5757
it 'qmgr should stay the same' do
@@ -70,3 +70,33 @@
7070
end
7171
end
7272

73+
describe 'postfix::config::mastercf', :type => :define do
74+
let(:facts) { {:operatingsystem => 'Debian', :operatingsystemrelease => '7.1'} }
75+
let(:title) { 'foobar' }
76+
let(:params) { {
77+
:ensure => 'present',
78+
:type => 'unix',
79+
:private => '-',
80+
:unprivileged => 'n',
81+
:chroot => 'n',
82+
:wakeup => '-',
83+
:limit => '-',
84+
:command => 'a_command',
85+
:options => { 'key1' => 'value1', 'key2' => 'value2', },
86+
} }
87+
it 'should have an augeas resource' do
88+
should contain_augeas('postfix master.cf foobar')
89+
end
90+
describe_augeas 'postfix master.cf foobar', :lens => 'postfix_master', :target => 'etc/postfix/master.cf' do
91+
it 'foobar should have proper command line' do
92+
should execute
93+
94+
aug_get('foobar/command').should
95+
be_in('a_command -o key1=value1 -o key2=value2',
96+
'a_command -o key2=value2 -o key1=value1')
97+
98+
should execute.idempotently
99+
end
100+
end
101+
end
102+

0 commit comments

Comments
 (0)