-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.yml
47 lines (33 loc) · 1.32 KB
/
main.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
---
# defaults file for snowagent
# Set this to absent to completely remove the snowagent
snowagent_agent_state: "present"
# The endpoint for the snowagent
snowagent_endpoint: "https://uni-sam-gw1.campus.unibe.ch"
# The sitename which the clients register to
snowagent_sitename: "unibe-zb-id"
# The baseurl for which the snowagent will be downloaded
snowagent_baseurl: "https://tools.id.unibe.ch/snowagent/"
# Download url of the rpm package
snowagent_download_rpm: "{{ snowagent_baseurl }}unibe_snowagent-{{ snowagent_version }}.x86_64.rpm"
# Download url of the debian package
snowagent_download_deb: "{{ snowagent_baseurl }}unibe_snowagent_{{ snowagent_version }}_amd64.deb"
# Version of the snowagent
snowagent_version: "7.0.1"
# LogLevel in the application
snowagent_loglevel: "warning"
# If running processes should be scanned
snowagent_scan_running_procs: "true"
# If SSL-Verification should be enabled
snowagent_ssl_verify: "true"
# Ignore bind mounts present in the system
snowagent_ignore_bind_mounts: "true"
# Ignore autofs mounts present in the system
snowagent_ignore_autofs_mounts: "true"
# Disable remote updates
snowagent_disable_all_updates: "true"
# Excludes of directories which will not be observed. Notice: /tmp is already escluded in the main config file
snowagent_excludes:
- "/home/*"
- "/var/*"
- "/storage/*"