|
Lines 1743-1749
Link Here
|
| 1743 |
mytimeout=int(portage.settings["RSYNC_TIMEOUT"]) |
1743 |
mytimeout=int(portage.settings["RSYNC_TIMEOUT"]) |
| 1744 |
except: |
1744 |
except: |
| 1745 |
pass |
1745 |
pass |
| 1746 |
mycommand="/usr/bin/rsync -rlptDvz --progress --stats --delete --delete-after --timeout="+str(mytimeout)+" --exclude='distfiles/*' --exclude='local/*' --exclude='packages/*' " |
1746 |
mycommand="/usr/bin/rsync -rlptDvz --progress --stats --delete --delete-after --timeout="+str(mytimeout)+" --exclude='distfiles/*' --exclude='local/*' --exclude='packages/*' --exclude='timestamp.x' " |
| 1747 |
if portage.settings.has_key("RSYNC_EXCLUDEFROM"): |
1747 |
if portage.settings.has_key("RSYNC_EXCLUDEFROM"): |
| 1748 |
if os.path.exists(portage.settings["RSYNC_EXCLUDEFROM"]): |
1748 |
if os.path.exists(portage.settings["RSYNC_EXCLUDEFROM"]): |
| 1749 |
mycommand=mycommand+" --exclude-from "+portage.settings["RSYNC_EXCLUDEFROM"] |
1749 |
mycommand=mycommand+" --exclude-from "+portage.settings["RSYNC_EXCLUDEFROM"] |