|
3 | 3 | # define to build up master.cf
|
4 | 4 | #
|
5 | 5 | # === 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) |
6 | 18 | #
|
7 | 19 | # === Variables
|
8 | 20 | #
|
9 | 21 | # === Authors
|
10 | 22 | #
|
11 | 23 | # mjhas@github
|
| 24 | +# |
12 | 25 | define postfix::config::mastercf (
|
13 | 26 | $ensure = present,
|
14 | 27 | $type = 'unix',
|
|
17 | 30 | $chroot = '-',
|
18 | 31 | $wakeup = '-',
|
19 | 32 | $limit = '-',
|
20 |
| - $command = 'echo',) { |
| 33 | + $command = 'echo', |
| 34 | + $options = undef,) { |
21 | 35 | Augeas {
|
22 | 36 | context => '/files/etc/postfix/master.cf',
|
23 | 37 | notify => Service['postfix'],
|
24 | 38 | require => Exec['postfix'],
|
25 | 39 | }
|
26 | 40 |
|
| 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 | + |
27 | 51 | case $ensure {
|
28 | 52 | present : {
|
29 | 53 | augeas { "postfix master.cf ${name}":
|
|
34 | 58 | "set ${name}/chroot ${chroot}",
|
35 | 59 | "set ${name}/wakeup ${wakeup}",
|
36 | 60 | "set ${name}/limit ${limit}",
|
37 |
| - "set ${name}/command '${command}'", |
| 61 | + "set ${name}/command '${full_command}'", |
38 | 62 | ],
|
39 | 63 | }
|
40 | 64 | }
|
|
0 commit comments