summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
Diffstat (limited to 'services')
-rw-r--r--services/common.cf13
-rw-r--r--services/main.cf7
2 files changed, 19 insertions, 1 deletions
diff --git a/services/common.cf b/services/common.cf
new file mode 100644
index 0000000..8ca7a3d
--- /dev/null
+++ b/services/common.cf
@@ -0,0 +1,13 @@
+bundle agent common
+{
+ files:
+ any::
+ "/etc/hosts"
+ edit_defaults => std_defs,
+ perms => system_owned("444"),
+ edit_template => "$(sys.inputdir)/templates/common/hosts",
+ classes => if_repaired("hosts_repaired");
+ reports:
+ any::
+ "$(this.bundle): /etc/hosts repaired" ifvarclass => "hosts_repaired";
+}
diff --git a/services/main.cf b/services/main.cf
index a1bea6d..2abefb9 100644
--- a/services/main.cf
+++ b/services/main.cf
@@ -8,8 +8,13 @@
bundle common classify
{
vars:
- "bundles" slist => { "debian", "ubuntu" };
+ "bundles" slist => {
+ "common",
+ "debian",
+ "ubuntu",
+ };
"inputs" slist => {
+ "services/common.cf",
"services/debian.cf",
"services/ubuntu.cf",
};