Merge pull request #798 from vaupelt/patch-1

strange results with services=all

agreed, the doc issues are unrelated to this PR, will fix those independently
This commit is contained in:
Brian Coca 2015-09-22 13:49:46 -04:00
commit 5017c4483a

View file

@ -913,6 +913,8 @@ class Nagios(object):
elif self.action == 'enable_alerts':
if self.services == 'host':
self.enable_host_notifications(self.host)
elif self.services == 'all':
self.enable_host_svc_notifications(self.host)
else:
self.enable_svc_notifications(self.host,
services=self.services)
@ -920,6 +922,8 @@ class Nagios(object):
elif self.action == 'disable_alerts':
if self.services == 'host':
self.disable_host_notifications(self.host)
elif self.services == 'all':
self.disable_host_svc_notifications(self.host)
else:
self.disable_svc_notifications(self.host,
services=self.services)