X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2Fnepi%2Fresources%2Flinux%2Fapplication.py;h=86cf9c980c96b62630c33dd8671a5560ce3d6d7e;hb=2f73c5b427909b016a438b372d17fb15d2d51ede;hp=af6ae34d2180a76f4442f4a900b19e1c3da8e3be;hpb=a1427c73700627c942e02788ee453bc7e6f73b29;p=nepi.git diff --git a/src/nepi/resources/linux/application.py b/src/nepi/resources/linux/application.py index af6ae34d..86cf9c98 100644 --- a/src/nepi/resources/linux/application.py +++ b/src/nepi/resources/linux/application.py @@ -360,6 +360,13 @@ class LinuxApplication(ResourceManager): def execute_deploy_command(self, command, prefix="deploy"): if command: + # replace application specific paths in the command + command = self.replace_paths(command) + + # replace application specific paths in the environment + env = self.get("env") + env = env and self.replace_paths(env) + # Upload the command to a bash script and run it # in background ( but wait until the command has # finished to continue )