From d3985f9af80c015972ca0dc14f554669ee8c93ba Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Mon, 23 Jun 2008 17:19:35 +0000 Subject: [PATCH] use command full path --- qaapi/qa/Remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qaapi/qa/Remote.py b/qaapi/qa/Remote.py index 42b9ed2..ec0a0ad 100644 --- a/qaapi/qa/Remote.py +++ b/qaapi/qa/Remote.py @@ -24,7 +24,7 @@ class Remote: # Execute vserver exec if necessary if 'vserver' in self and self['vserver']: - command = " vserver %s exec %s " % (self['vserver'], command) + command = "/usr/sbin/vserver %s exec %s " % (self['vserver'], command) return command -- 2.47.0