User Tools

Site Tools


centos_local_repo_rsync

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
centos_local_repo_rsync [2011/07/11 18:26] jtcentos_local_repo_rsync [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1
Line 1: Line 1:
-<code bash> 
-#!/bin/bash 
  
-# name: centos-rsync 
-# date: 20110711 
-# author: jason thomas <jthomas@blip.tv> 
-# purpose: update local centos mirror with remote centos mirror 
- 
-LOCK="/var/lock/subsys/centos-rsync" 
-REPO="/var/www/kitchen/htdocs/repos/centos" 
-MIRROR="mirror.cogentco.com" 
- 
-CURRENT5="5.6" 
-CURRENT6="6.0" 
- 
- 
-sync_repo(){ 
-  ( flock 200 
-  if [ -d $REPO/$@ ] ; then 
-     rsync  -avSHP --delete --exclude "local*" --exclude "isos" --exclude "i386" $MIRROR::CentOS/$@/ $REPO/$@/ 
-  fi 
-  ) 200>$LOCK$@  
-} 
- 
-sync_repo $CURRENT5 & 
-sync_repo $CURRENT6 & 
-</code> 
centos_local_repo_rsync.1310408778.txt.gz · Last modified: 2020/08/10 02:28 (external edit)