diff options
author | Parabola <parabolavnx@lions.dreamhost.com> | 2011-03-05 10:56:49 -0800 |
---|---|---|
committer | Parabola <parabolavnx@lions.dreamhost.com> | 2011-03-05 10:56:49 -0800 |
commit | a3694fd2824f6aab2905f52f64a138437f7e004b (patch) | |
tree | ebae95ceb5d737cbf3f3e2e9ee0304b2e538f322 /config.py | |
parent | 9793aaf4e9a716f126e71a1db412cbd32f161593 (diff) |
Taken out «sources» from dir_list for rsync
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -27,9 +27,10 @@ archdb = tmp + "/db" free_path= path + "/free/" # Repo, arch, and other folders to use for repo -repo_list = ("core", "extra", "community", "testing", "community-testing", "multilib") -dir_list = ("pool","sources") -arch_list = ("i686", "x86_64") +# This are tuples, so **always keep a comma before closing parenthesis ** +repo_list = ("core", "extra", "community", "testing", "community-testing", "multilib",) +dir_list = ("pool",) +arch_list = ("i686", "x86_64",) other = ("any",) # Output |