let us never speak of that hack again

This commit is contained in:
Stephen Smoogen 2017-05-02 20:52:55 +00:00
parent 9064b111f3
commit 5afe426f8d
5 changed files with 1 additions and 9 deletions

View file

@ -267,5 +267,3 @@ nagios_Check_Services:
httpd: false
nagios_NoCheck_Services:
vpn: false

View file

@ -15,5 +15,3 @@ ssh_hostnames:
- bastion.fedoraproject.org
- bastion02.fedoraproject.org
nagios_NoCheck_Services:
vpn:true

View file

@ -12,5 +12,3 @@ eth0_nm: 255.255.255.192
eth1_ip: 172.31.1.1
eth1_nm: 255.255.255.0
nagios_NoCheck_Services:
vpn:true

View file

@ -10,5 +10,3 @@ br0_ip: 204.85.14.4
br0_nm: 255.255.255.192
vpn: true
nagios_NoCheck_Services:
vpn:true

View file

@ -3,6 +3,6 @@
define hostgroup {
hostgroup_name vpnclients
alias vpnclients
members {% for host in groups['all'] %}{% if ( hostvars[host].vpn is defined ) %}{{host}},{% endif %} {% endfor %}
members {% for host in groups['all'] %}{% if ( hostvars[host].vpn == true ) %}{{host}},{% endif %} {% endfor %}
}