28 lines
742 B
YAML
28 lines
742 B
YAML
|
#!/usr/bin/env ansible-playbook
|
||
|
# vim:ft=ansible:
|
||
|
nagios_data_dir: /data/nagios
|
||
|
nagios_admin_pass: foobar
|
||
|
nagios_timezone: "America/Chicago"
|
||
|
# nagios_contacts:
|
||
|
# - name: Bob
|
||
|
# host_notification_commands: notify-host-by-email
|
||
|
# service_notification_commands: notify-service-by-email
|
||
|
# extra:
|
||
|
# - key: email
|
||
|
# value: bob@mysite.example.com
|
||
|
nagios_contacts: []
|
||
|
# nagios_commands:
|
||
|
# - name: check_thing
|
||
|
# command: "$USER1$/check_thing -H $HOSTADDRESS% $ARG1$
|
||
|
nagios_commands: []
|
||
|
# nagios_services:
|
||
|
# - name: HTTP
|
||
|
# command: check_http
|
||
|
# hostgroup: tag-nagios-checkhttp
|
||
|
# - name: SSH
|
||
|
# command: check_ssh
|
||
|
# - name: Docker
|
||
|
# command: foo
|
||
|
# hostgroup: "!tag-no-docker"
|
||
|
nagios_services: []
|