1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'manifests/channel.pp', line 1
define charybdis::channel (
$value,
$conffile = $charybdis::conffile
) {
concat::fragment { "${name} channel":
target => $conffile,
content => template('charybdis/channel.erb'),
order => '080',
}
if ! defined(Concat::Fragment['channel open']) {
concat::fragment { 'channel open':
target => $conffile,
content => "channel {\n",
order => '079',
}
}
if ! defined(Concat::Fragment['channel close']) {
concat::fragment { 'channel close':
target => $conffile,
content => "};\n",
order => '081',
}
}
}
|