aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mirror/templates/mirrordir
blob: 85b54389a3bc114a55f491aeed856267fb7faa3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

remoteurl="<%= remoteurl%>"
localdir="<%= localdir %>"
rsync_options="<%= rsync_options %>"
lockfile="<%= lockfile %>"

test -f "$lockfile" && exit
touch "$lockfile"
/usr/bin/rsync $rsync_options "$remoteurl" "$localdir"
rm -f "$lockfile"