git://git.exim.org
/
mirror-monitor.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
daily_git_commit_mail.sh -> git_commit_mail.sh – it's called every hour
[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