We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e255d7 commit 21be7a6Copy full SHA for 21be7a6
lib/README.md
@@ -0,0 +1,40 @@
1
+# `lib/`
2
+
3
+This folder is for files referenced by `path` in Fleet config YAML.
4
5
+This can reduce duplication for policies, scripts, and other config that is the same across multiple teams in Fleet Premium.
6
7
+### Examples
8
9
+##### Policies
10
11
+```yaml
12
+# default.yml
13
+policies:
14
+ - path: ./lib/macos-device-health.policies.yml
15
+```
16
17
+##### Queries
18
19
20
21
+queries:
22
+ - path: ./lib/collect-usb-devices.queries.yml
23
24
25
+##### Scripts
26
27
28
29
+controls:
30
+ scripts:
31
+ - path: ./lib/remove-zoom-artifacts.script.sh
32
33
34
+##### Agent options
35
36
37
38
+agent_options:
39
+ path: ./lib/agent-options.yml
40
0 commit comments