From 954d67fa32e52c0c2e99bb63037fc3ae8d1d1e87 Mon Sep 17 00:00:00 2001 From: Ronny Abraham Date: Wed, 10 Oct 2018 13:33:46 +0300 Subject: [PATCH] changed deploy.ssh from using sudo to local b/c sudo runs on the remote machine and I want ssh to be run off the local to connect to the remote --- modules/deploy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/deploy.py b/modules/deploy.py index d2fad01..0d1a102 100644 --- a/modules/deploy.py +++ b/modules/deploy.py @@ -1,5 +1,6 @@ from fabric.api import env, task -from fabric.operations import run, local +from fabric.operations import run +from fabric.operations import local # from fabric.contrib.files import upload_template # from utils import print_run