From 9965a3098e09019fba2c8abc3b5eb7d8ea039d1f Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Tue, 30 Jul 2013 06:19:01 +0200 Subject: [PATCH] Ajout de "localhost" dans les serveurs possible pour tester rapidement. --- clientconfig.example.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clientconfig.example.py b/clientconfig.example.py index 6df14b8..b609b4b 100755 --- a/clientconfig.example.py +++ b/clientconfig.example.py @@ -27,6 +27,10 @@ servers = { 'default': { 'server_cmd': [ssh_path, 'vert.adm.crans.org', distant_cmd], }, + # Utile pour tester + 'localhost': { + 'server_cmd': [ssh_path, 'localhost', distant_cmd], + }, 'ovh': { 'server_cmd': [ssh_path, 'ovh.crans.org', distant_cmd], }