git://git.exim.org
/
mirror-monitor.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
fd1bf398bed473208f5775264dcf539675bd81a5
[mirror-monitor.git]
/
bin
/
run_mirmon
1
#!/bin/sh
2
# $Cambridge$
3
#
4
# Runs mirmon for both ftp and www repos
5
#
6
MIRMON_BASE=/opt/cumin/mirror-monitor/mirmon
7
cd ${MIRMON_BASE} || exit
8
9
# update the repository in case of changes
10
git pull -q
11
12
# work through the mirrors
13
for set in www ftp
14
do
15
./mirmon -q -get update -c mirmon_${set}.conf
16
done