From 87c9925c1ef7aa8624e117366d6cc17f98bba090 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xe=CC=81fir=20Destiny?= Date: Fri, 1 Nov 2013 18:20:07 +0100 Subject: [PATCH] Ajout de l'exemple de configuration --- config-sample.php | 62 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 config-sample.php diff --git a/config-sample.php b/config-sample.php new file mode 100644 index 0000000..c3f4735 --- /dev/null +++ b/config-sample.php @@ -0,0 +1,62 @@ + array( + 'prod1' => array( + 'title' => 'Production de la mort', + 'host' => '192.168.1.10', + 'port' => 22, + 'user' => 'root', + 'pass' => 'root', + 'path' => '/home/user/root' + ), + 'test1' => array( + 'title' => 'Test de la mort', + 'host' => '192.168.1.20', + 'port' => 22, + 'user' => 'user', + 'pass' => 'blbl', + 'path' => '/home/user/test' + ), + 'prod2' => array( + 'title' => 'Production de la mort', + 'host' => '192.168.1.30', + 'port' => 22, + 'user' => 'root', + 'pass' => 'root', + 'path' => '/home/user/root' + ) + ), + 'Groupe de serveur 2' => array( + 'prod3' => array( + 'title' => 'Production de la mort', + 'host' => '192.168.1.40', + 'port' => 22, + 'user' => 'root', + 'pass' => 'root', + 'path' => '/home/user/root' + ), + 'test3' => array( + 'title' => 'Test de la mort', + 'host' => '192.168.1.40', + 'port' => 22, + 'user' => 'user', + 'pass' => 'blbl', + 'path' => '/home/user/test' + ), + 'prod4' => array( + 'title' => 'Production de la mort', + 'host' => '192.168.1.50', + 'port' => 22, + 'user' => 'root', + 'pass' => 'root', + 'path' => '/home/user/root' + ) + ) +);