Fix client action

master3.3
parent a9ccef8571
commit 36af2d8e83

@ -28,7 +28,7 @@ class VariableAcClientMerge(ActionVariable):
Action variable which has value "up" for package install and
install this package
"""
nonchroot, postinst = True,True
nonchroot = True
def action(self,cl_action):
if cl_action in ("merge","domain","undomain"):
@ -39,7 +39,7 @@ class VariableAcClientDomain(ActionVariable):
"""
Action variable which has value "on" for domain action
"""
nonchroot, postinst = True,True
nonchroot = True
def action(self,cl_action):
remoteHost = self.Get("cl_remote_host")
@ -55,7 +55,7 @@ class VariableAcClientUndomain(ActionVariable):
"""
Action variable which has value "on" for undomain action
"""
nonchroot, postinst = True,True
nonchroot = True
def action(self,cl_action):
remoteHost = self.Get("cl_remote_host")

Loading…
Cancel
Save