quiet ssh/scp

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-10-06 15:48:44 +02:00
parent 59bee14101
commit 5a7e4b2f32
1 changed files with 2 additions and 2 deletions

View File

@ -289,8 +289,8 @@ def config(args):
time_start = datetime.datetime.now()
os.environ['__remote_exec'] = "ssh -o User=root"
os.environ['__remote_copy'] = "scp -o User=root"
os.environ['__remote_exec'] = "ssh -o User=root -q"
os.environ['__remote_copy'] = "scp -o User=root -q"
for host in args.host:
c = Config(host, initial_manifest=args.manifest, home=args.cdist_home, debug=args.debug)