]> gitweb.pimeys.fr Git - scripts-20-100.git/blob - dump_all_confs.sh
typo
[scripts-20-100.git] / dump_all_confs.sh
1 #!/bin/bash
2
3 # Dumpe les config de toutes les MLs
4
5 DIR="/home/legallic/confs/"
6
7 cd ${DIR}
8
9 echo "Dumping des confs des MLs dans ${DIR}…"
10
11 for ml in $(list_lists -b)
12 do
13 echo ${ml}
14 config_list -o config-${ml} ${ml}
15 done