repomirror/repomirror/constants.py

16 lines
519 B
Python
Raw Normal View History

2020-06-13 03:46:49 -04:00
PROTO_DEF_PORTS = {'ftp': 21,
'rsync': 873}
2020-06-16 15:44:50 -04:00
RSYNC_DEF_ARGS = ['--recursive',
'--times',
'--links',
'--hard-links',
'--delete-after',
'--delay-updates',
'--copy-links',
'--safe-links',
'--delete-excluded',
'--exclude=.*']
# How many days an upstream should have last synced by before it's considered stale.
DAYS_WARN = 2
2020-06-18 00:29:12 -04:00
VERSION = '1.0.1'