From 84a5da62fe1bc0a0554b658ed9b6cb4c5a0e5ff8 Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Sun, 29 Sep 2013 19:06:21 +0200 Subject: [PATCH] Mirrorer les modifs de config sur tous les serveurs. --- update_myconfig.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 update_myconfig.sh diff --git a/update_myconfig.sh b/update_myconfig.sh new file mode 100755 index 0000000..34216ea --- /dev/null +++ b/update_myconfig.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +# Pour mettre à jour les fichiers de configuration personnelle +# sur toutes les machines où j'ai accès + +color='' +endcolor='' + +# locally +echo "${color}sur eva:${endcolor}" +cd ~/.myconfig +git pull + +for i in cerebro cabal info22 bde bde2 bde3 videobde pimeys baldrick quigon hexagon zamok ovh +do + echo "${color}sur $i:${endcolor}" + ssh $i 'cd .myconfig; git pull' +done + +echo "${color}Pas pu mettre à jour (FrowardAgent=no) :${endcolor} tahines, rasputin" -- 2.39.2