-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.cf
36 lines (25 loc) · 1012 Bytes
/
packages.cf
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
bundle agent packages {
vars:
"wanted_packages" slist => { "atool",
"less",
"aptitude",
"strace",
"whois",
"lsof",
"atop",
"tcpdump",
"xterm",
"net-tools",
"bind9-host",
"dnsutils",
"locate"
};
"unwanted_packages" slist => { "bash-completion",
"resolvconf"
};
packages:
"$(wanted_packages)"
policy => "present";
"$(unwanted_packages)"
policy => "absent";
}