From f5b6138e762de6d0972774637110fac12684b045 Mon Sep 17 00:00:00 2001 From: Mauro Torrez Date: Sun, 8 Sep 2019 18:22:03 -0300 Subject: [PATCH] fix bug on service disable --- action_plugins/postconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action_plugins/postconf.py b/action_plugins/postconf.py index 8a7ffbe..5b2d5e1 100755 --- a/action_plugins/postconf.py +++ b/action_plugins/postconf.py @@ -209,7 +209,7 @@ class ActionModule(ActionBase): pass else: # remove whole service definition - cmdline = 'postconf -M# {}/{}'.format(service,stype) + cmdline = 'postconf -M# {}/{}'.format(self.service,self.stype) self.runcmd('cmd_remove_service',cmdline) # non-absent states: set all fields -----------------------------------