updated fabric commands to be hide output

This commit is contained in:
Blake Harnden 2019-10-22 12:36:47 -07:00
parent b703ad11c6
commit 9e7b5abeb9

View file

@ -18,6 +18,7 @@ from core.nodes.ipaddress import IpAddress
from core.nodes.network import CoreNetwork, CtrlNet from core.nodes.network import CoreNetwork, CtrlNet
LOCK = threading.Lock() LOCK = threading.Lock()
CMD_HIDE = True
class DistributedServer(object): class DistributedServer(object):
@ -60,12 +61,12 @@ class DistributedServer(object):
try: try:
if cwd is None: if cwd is None:
result = self.conn.run( result = self.conn.run(
cmd, hide=False, env=env, replace_env=replace_env cmd, hide=CMD_HIDE, env=env, replace_env=replace_env
) )
else: else:
with self.conn.cd(cwd): with self.conn.cd(cwd):
result = self.conn.run( result = self.conn.run(
cmd, hide=False, env=env, replace_env=replace_env cmd, hide=CMD_HIDE, env=env, replace_env=replace_env
) )
return result.stdout.strip() return result.stdout.strip()
except UnexpectedExit as e: except UnexpectedExit as e: