Parent Directory
|
Revision Log
add mirrordir script and mirrorbootstrap class
1 | boklm | 841 | #!/bin/sh |
2 | |||
3 | remoteurl="<%= remoteurl%>" | ||
4 | localdir="<%= localdir %>" | ||
5 | rsync_options="<%= rsync_options %>" | ||
6 | lockfile="<%= lockfile %>" | ||
7 | |||
8 | test -f "$lockfile" && exit | ||
9 | touch "$lockfile" | ||
10 | /usr/bin/rsync $rsync_options "$remoteurl" "$localdir" | ||
11 | rm -f "$lockfile" | ||
12 |
ViewVC Help | |
Powered by ViewVC 1.1.28 |