<div dir="ltr">Brian,<div><br></div><div>This seems to work just fine. </div><div><br></div><div>Thank you!!</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Feb 25, 2015 at 10:27 AM, Brian Downey <span dir="ltr"><<a href="mailto:bdowney@thelinuxfix.com" target="_blank">bdowney@thelinuxfix.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Kenny,<br>
<br>
We've been using this simple script for years and it works great.  If I had to guess, the error you're receiving is because you're missing the second ':' between the host and module in the rsync statement.<br>
<br>
<br>
#!/bin/bash<br>
# Updates local mirrors.<br>
#<br>
# 2011-03-24 Initial version.<br>
<br>
LOCKFILE="/var/run/mirror-<u></u>rsync.pid"<br>
<br>
# Update CentOS<br>
if [ -f ${LOCKFILE} ]<br>
    then<br>
        exit 1<br>
    else<br>
        echo ${$} > ${LOCKFILE}<br>
        /usr/bin/rsync -aqzH --no-o --no-g --delay-updates --delete msync-dvd.centos.org::CentOS-<u></u>incdvd /var/www/html/centos/<br>
        /bin/rm -f ${LOCKFILE}<br>
fi<br>
<br>
<br>
<br>
<br>
---<br>
Brian Downey<br>
The Linux Fix<br>
o: (877) 447-6291 x107<br>
c: (734) 276-1549<br>
f: (530) 221-4154<div><div class="h5"><br>
<br>
On 2015-02-25 07:19, Kenny Carsey wrote:<br>
</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
This is what I have as my script for testing on a public mirror.  It<br>
does not yet point to the master server.<br>
<br>
#!/bin/bash<br>
 echo "--BEGINNING REPOSITORY SYNC AT `date`--"<br>
if [ -f /var/lock/subsys/rsync_updates ]; then<br>
     echo "Updates via rsync already running."<br>
     echo "--ERROR: REPOSITORY SYNC ABORTED AT `date`--"<br>
     exit 0<br>
fi<br>
if [ -d /share/linux-os/centos/ ] ; then<br>
     echo "--SYNCING CentOS REPOSITORY, PLEASE WAIT--"<br>
     touch /var/lock/subsys/rsync_updates<br>
     time rsync -avSHP --delete /" --exclude "HEADER.html"" --no-motd<br>
mirror.us.oneandone.net:centos /share/linux-os/centos/<br>
     /bin/rm -f /var/lock/subsys/rsync_updates<br>
     echo "--CentOS REPOSITORY SYNC FINISHED AT `date`--"<br>
else<br>
     echo "Target directory /share/linux-os/centos/ not present."<br>
     echo "--ERROR: REPOSITORY SYNC ABORTED AT `date` --"<br>
fi<br>
<br>
This is the output that it gives me.<br>
<br>
[root@mirrors ~]# ./test.sh<br>
--BEGINNING REPOSITORY SYNC AT Wed Feb 25 10:19:16 EST 2015--<br>
--SYNCING CentOS REPOSITORY, PLEASE WAIT--<br>
Unexpected remote arg: mirror.us.oneandone.net:centos<br>
rsync error: syntax or usage error (code 1) at main.c(1201)<br>
[sender=3.0.6]<br>
<br>
real    0m0.002s<br>
user    0m0.000s<br>
sys     0m0.002s<br>
--CentOS REPOSITORY SYNC FINISHED AT Wed Feb 25 10:19:16 EST 2015--<br>
<br>
On Wed, Feb 25, 2015 at 9:58 AM, Warren Myers <<a href="mailto:volcimaster@gmail.com" target="_blank">volcimaster@gmail.com</a>><br>
wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Also - as a single point of reference (before IP filtering was<br>
done), I found out how long it would take to do a full mirror<br>
(~80GB), and it's about 8 hours at ~2.5 MB/s:<br>
<br>
<br>
</blockquote>
<a href="http://antipaucity.com/2014/05/22/soup-to-nuts-mirroring-of-centos/#.VO3i2FPF83Q" target="_blank">http://antipaucity.com/2014/<u></u>05/22/soup-to-nuts-mirroring-<u></u>of-centos/#.VO3i2FPF83Q</a><br>
</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
[1]<span class=""><br>
<br>
On Wed, Feb 25, 2015 at 9:57 AM, Warren Myers<br>
<<a href="mailto:volcimaster@gmail.com" target="_blank">volcimaster@gmail.com</a>> wrote:<br>
<br>
I don't use a lockfile (and my mirror is in Germany - hence the eu<br>
reference), but I use the following:<br>
<br>
0 3,15 * * * rsync -aqzH --delete eu-msync.centos.org::CentOS<br>
/var/www/centos/media<br>
<br>
On Wed, Feb 25, 2015 at 9:29 AM, Kenny Carsey <<a href="mailto:kcarsey@wvstateu.edu" target="_blank">kcarsey@wvstateu.edu</a>><br>
wrote:<br>
<br>
Hello,<br>
I have set up and did the initial sync for a new mirror in West<br>
Virginia. After looking at the mirrors list, I believe this is the<br>
first mirror to be located in WV<br>
<br></span>
HTTP: <a href="http://centos.mirrors.wvstateu.edu" target="_blank">http://centos.mirrors.<u></u>wvstateu.edu</a> [2]<span class=""><br>
Sync schedule: Every 12 hrs<br>
<br>
Bandwidth: 300Mbps<br>
Location: Institute, WV, USA<br>
Sponsor: West Virginia State University<br></span>
Sponsor URL: <a href="http://www.wvstateu.edu" target="_blank">www.wvstateu.edu</a> [3]<span class=""><br>
IP to authorize: 192.73.23.18<br>
Email contact: <a href="mailto:kcarsey@wvstateu.edu" target="_blank">kcarsey@wvstateu.edu</a><br>
<br>
Also, I am having issues getting a good rsync script working with a<br>
lock file. Could someone provide a working example that I could<br>
modify to fit my configuration? Would be much appreciated!<br>
<br>
______________________________<u></u>_________________<br>
CentOS-mirror mailing list<br>
<a href="mailto:CentOS-mirror@centos.org" target="_blank">CentOS-mirror@centos.org</a><br>
</span><a href="http://lists.centos.org/mailman/listinfo/centos-mirror" target="_blank">http://lists.centos.org/<u></u>mailman/listinfo/centos-mirror</a> [4]<br>
<br>
--<br>
<br>
WARREN MYERS<br>
<a href="http://antipaucity.com" target="_blank">http://antipaucity.com</a> [5]<br>
<a href="http://twitter.com/warrenmyers" target="_blank">http://twitter.com/warrenmyers</a> [6]<br>
<a href="http://www.linkedin.com/in/warrenmyers" target="_blank">http://www.linkedin.com/in/<u></u>warrenmyers</a> [7]<br>
<a href="https://www.digitalocean.com/?refcode=d197a961987a" target="_blank">https://www.digitalocean.com/?<u></u>refcode=d197a961987a</a> [8]<br>
<br>
TXT WMYERS to 50500 | <a href="http://contxts.com" target="_blank">http://contxts.com</a> [9]<br>
</blockquote>
<br>
--<br>
<br>
WARREN MYERS<br>
<a href="http://antipaucity.com" target="_blank">http://antipaucity.com</a> [5]<br>
<a href="http://twitter.com/warrenmyers" target="_blank">http://twitter.com/warrenmyers</a> [6]<br>
<a href="http://www.linkedin.com/in/warrenmyers" target="_blank">http://www.linkedin.com/in/<u></u>warrenmyers</a> [7]<br>
<a href="https://www.digitalocean.com/?refcode=d197a961987a" target="_blank">https://www.digitalocean.com/?<u></u>refcode=d197a961987a</a> [8]<br>
<br>
TXT WMYERS to 50500 | <a href="http://contxts.com" target="_blank">http://contxts.com</a> [9]<span class=""><br>
______________________________<u></u>_________________<br>
 CentOS-mirror mailing list<br>
 <a href="mailto:CentOS-mirror@centos.org" target="_blank">CentOS-mirror@centos.org</a><br></span>
 <a href="http://lists.centos.org/mailman/listinfo/centos-mirror" target="_blank">http://lists.centos.org/<u></u>mailman/listinfo/centos-mirror</a> [4]<span class=""><br>
<br>
--<br>
<br>
Kenny Carsey<br>
Systems Administrator<br>
West Virginia State University<br>
<br>
108 Hamblin Hall<br>
PO Box 1000<br>
Institute, WV 25112<br>
<a href="mailto:kcarsey@wvstateu.edu" target="_blank">kcarsey@wvstateu.edu</a><br>
(304)204-4337<br>
<br>
<br>
<br></span>
Links:<br>
------<br>
[1]<br>
<a href="http://antipaucity.com/2014/05/22/soup-to-nuts-mirroring-of-centos/#.VO3i2FPF83Q" target="_blank">http://antipaucity.com/2014/<u></u>05/22/soup-to-nuts-mirroring-<u></u>of-centos/#.VO3i2FPF83Q</a><br>
[2] <a href="http://centos.mirrors.wvstateu.edu" target="_blank">http://centos.mirrors.<u></u>wvstateu.edu</a><br>
[3] <a href="http://www.wvstateu.edu" target="_blank">http://www.wvstateu.edu</a><br>
[4] <a href="http://lists.centos.org/mailman/listinfo/centos-mirror" target="_blank">http://lists.centos.org/<u></u>mailman/listinfo/centos-mirror</a><br>
[5] <a href="http://antipaucity.com" target="_blank">http://antipaucity.com</a><br>
[6] <a href="http://twitter.com/warrenmyers" target="_blank">http://twitter.com/warrenmyers</a><br>
[7] <a href="http://www.linkedin.com/in/warrenmyers" target="_blank">http://www.linkedin.com/in/<u></u>warrenmyers</a><br>
[8] <a href="https://www.digitalocean.com/?refcode=d197a961987a" target="_blank">https://www.digitalocean.com/?<u></u>refcode=d197a961987a</a><br>
[9] <a href="http://contxts.com" target="_blank">http://contxts.com</a><span class=""><br>
<br>
______________________________<u></u>_________________<br>
CentOS-mirror mailing list<br>
<a href="mailto:CentOS-mirror@centos.org" target="_blank">CentOS-mirror@centos.org</a><br>
<a href="http://lists.centos.org/mailman/listinfo/centos-mirror" target="_blank">http://lists.centos.org/<u></u>mailman/listinfo/centos-mirror</a><br>
</span></blockquote><div class="HOEnZb"><div class="h5">
______________________________<u></u>_________________<br>
CentOS-mirror mailing list<br>
<a href="mailto:CentOS-mirror@centos.org" target="_blank">CentOS-mirror@centos.org</a><br>
<a href="http://lists.centos.org/mailman/listinfo/centos-mirror" target="_blank">http://lists.centos.org/<u></u>mailman/listinfo/centos-mirror</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><font face="verdana, sans-serif"><span style="line-height:18.546667098999023px">Kenny Carsey</span></font><div><font face="verdana, sans-serif" size="1"><span style="line-height:18.546667098999023px">Systems Administrator</span></font></div><div><span style="line-height:18.546667098999023px;font-family:verdana,sans-serif;font-size:x-small">West Virginia State University</span><br></div><div><font face="verdana, sans-serif" size="1"><span style="line-height:18.546667098999023px">108 Hamblin Hall</span></font></div><div><font face="verdana, sans-serif" size="1"><span style="line-height:18.546667098999023px">PO Box 1000</span></font></div><div><font face="verdana, sans-serif" size="1"><span style="line-height:18.546667098999023px">Institute, WV 25112</span></font></div><div><font face="verdana, sans-serif" size="1"><span style="line-height:18.546667098999023px"><a href="mailto:kcarsey@wvstateu.edu" target="_blank">kcarsey@wvstateu.edu</a></span></font></div><div><font face="verdana, sans-serif" size="1"><span style="line-height:18.546667098999023px">(304)204-4337</span></font></div><div><font face="verdana, sans-serif"><span style="line-height:18.546667098999023px"><br></span></font></div></div></div>
</div>