diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-04-10 15:18:17 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-04-10 15:18:17 -0500 |
commit | 2b721124f5122faae5709e5e2dd8035f392c1361 (patch) | |
tree | c8bbe456ea7cee11923f11d4cdf77f5de077e9f0 /config.sh | |
parent | 72d3e1102acf8e90a1646d5c9afa6fdd01b2aeca (diff) |
config.py import config.sh settings
Diffstat (limited to 'config.sh')
-rwxr-xr-x | config.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,7 @@ #!/bin/sh # -*- coding: utf-8 -*- + # Mirror options mirror="mirrors.eu.kernel.org" mirrorpath="::mirrors/archlinux" @@ -18,7 +19,7 @@ docs_dir=${paraboladir}/docs repodir=${paraboladir}/repo # Repos, arches, and dirs for repo -repolist="core:extra:community:testing:community-testing:multilib" +repo_list="core:extra:community:testing:community-testing:multilib" dir_list="pool" arch_list="i686:x86_64" other="any" @@ -28,7 +29,6 @@ output="True" debug="False" # Rsync commands -rsync_list_command="rsync -a --no-motd --list-only " rsync_update_command="rsync -av --delay-updates --exclude=*.{abs|db}.tar.* " rsync_post_command="rsync -av --delete --exclude=*.abs.tar.* " @@ -41,7 +41,7 @@ function run_python_cmd { tempdir=${tempdir} \ docs_dir=${docs_dir} \ repodir=${repodir} \ - repolist=${repolist} \ + repo_list=${repo_list} \ dir_list=${dir_list} \ arch_list=${arch_list} \ other=${other} \ |