blob: 440d6d2df7e82484b6a0ae83f69b917a6c541d2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
###############################################################################
#
# bundle agent main
# - User/Site policy entry
#
###############################################################################
bundle common classify
{
vars:
"bundles" slist => { "ubuntu" };
"inputs" slist => { "services/ubuntu.cf" };
classes:
any::
"containers" or => {
regline(".*/lxc/.*", "/proc/1/cgroup"),
regline(".*lxc", "/proc/1/environ"),
};
"mail_servers" or => { "legend" };
}
|