Browse CVS Repository
Diff of /samurai-graph/web/rsync.sh
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 1 |
#!/bin/sh |
#!/bin/sh |
| 2 |
RSYNC=/usr/local/bin/rsync |
RSYNC=`which rsync` |
| 3 |
|
if [ x"$RSYNC" = x ]; then |
| 4 |
|
echo "error : rsync command required" |
| 5 |
|
exit 1; |
| 6 |
|
fi |
| 7 |
RSYNC_OPTS="-rlvzC --delete" |
RSYNC_OPTS="-rlvzC --delete" |
| 8 |
RSYNC_RSH=ssh |
RSYNC_RSH=ssh |
| 9 |
SRC=`dirname $0`/htdocs |
SRC=`dirname $0`/htdocs |
|
|
Legend:
| Removed from v.1.1 |
|
| changed lines |
| |
Added in v.1.2 |
|
|
|