Wrap text
Report abuse
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
class postfix {
$var = 1
$thing = asljdlajs
$bin_path = "/usr/sbin/"
file {
"/etc/postfix/main.cf":
content => tempalte("postfix/main.cf.erb");
}
}
class postfix::centos inherits postfix {
$var = 2
File["/etc/postfix/main.cf"] { content => template("postfix/main.cf.erb") }
}
class postfix::ubuntu inherits postfix {
$var = 2
$bin_path = "/usr/local/sbin"
File["/etc/postfix/main.cf"] { content => template("postfix/main.cf.erb") }
}
|