22 lines
450 B
Plaintext
22 lines
450 B
Plaintext
|
# Sample Configuration file
|
||
|
#
|
||
|
|
||
|
# Where to log my output?
|
||
|
LOG=/tmp/repo_sync.log
|
||
|
|
||
|
# Where to download my repository packages?
|
||
|
REPO_DIR=repos
|
||
|
|
||
|
# Syntax:
|
||
|
# reponame:repopath
|
||
|
#
|
||
|
# Retrieve repo name from 'yum repolist' and set repo
|
||
|
# path you get from a first run of reposync.
|
||
|
#
|
||
|
# Note: It appears the path changes between repo's is the
|
||
|
# reason you need to run reposync first to get the path
|
||
|
REPOS=(
|
||
|
repo1:repo1_path
|
||
|
repo2:repo2_path
|
||
|
)
|