add vserver name as the last command argument
authorBarış Metin <Talip-Baris.Metin@sophia.inria.fr>
Thu, 17 Jun 2010 14:38:17 +0000 (14:38 +0000)
committerBarış Metin <Talip-Baris.Metin@sophia.inria.fr>
Thu, 17 Jun 2010 14:38:17 +0000 (14:38 +0000)
python/vserver.py

index e3a0269..fea10c3 100644 (file)
@@ -466,6 +466,8 @@ class VServer:
                         # enter vserver context
                         arg_subst = { 'runlevel': runlevel }
                         cmd_args = [cmd[0]] + map(lambda x: x % arg_subst, cmd[1:])
+                        # add vserver name as the last command argument
+                        cmd_args += [self.name]
                         cmd_file = "/vservers/" + self.name + cmd[0]
                         self.log(cmd_file)
                         if os.path.isfile(cmd_file):