Advertisement
cheungtifan

mozmir.sh

Jan 27th, 2012
409
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.23 KB | None | 0 0
  1. #!/bin/sh
  2. while true; do
  3.         rsync -avz --progress --delete --delete-before releases-rsync.mozilla.org::mozilla-current/ /export/mirror/mozilla-current/&
  4.         RSYNC_PID=$!
  5.         sleep 120
  6.         kill -9 $RSYNC_PID
  7. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement