Skip to content

Commit 993b384

Browse files
authored
Merge pull request #84 from nickanderson/autorun-bundles-and-autorun-inputs/master
Added modules for autorun-inputs and autorun-bundles
2 parents a0d68a2 + e5a4345 commit 993b384

File tree

5 files changed

+26
-0
lines changed

5 files changed

+26
-0
lines changed

cfbs.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@
88
"subdirectory": "management/autorun",
99
"steps": ["json def.json def.json"]
1010
},
11+
"autorun-bundles": {
12+
"description": "Enable automatic execution of bundles tagged 'autorun'.",
13+
"subdirectory": "management/autorun-bundles",
14+
"steps": ["json def.json def.json"]
15+
},
16+
"autorun-inputs": {
17+
"description": "Enable automatic loading of policy files in 'services/autorun/'.",
18+
"subdirectory": "management/autorun-inputs",
19+
"steps": ["json def.json def.json"]
20+
},
1121
"client-initiated-reporting": {
1222
"description": "Enable client initiated reporting and disable pull collection.",
1323
"subdirectory": "reporting/client-initiated-reporting",

management/autorun-bundles/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Enable autorun bundles
2+
3+
Simple module to enable automatic execution of bundles tagged with `autorun`, using `def.json`.

management/autorun-bundles/def.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"classes": {
3+
"services_autorun_bundles": ["any"]
4+
}
5+
}

management/autorun-inputs/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Enable autorun inputs
2+
3+
Simple module to enable automatic loading of policy files that reside in `services/autorun/`, using `def.json`.

management/autorun-inputs/def.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"classes": {
3+
"services_autorun_inputs": ["any"]
4+
}
5+
}

0 commit comments

Comments
 (0)