summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config7
1 files changed, 3 insertions, 4 deletions
diff --git a/config b/config
index 8b8117f..3b7c13a 100644
--- a/config
+++ b/config
@@ -1,6 +1,5 @@
-#!/bin/bash
+#/bin/bash # as a hint to text editors
FTP_BASE="/srv/http/repo/public"
-ARCH_BASE="/srv/http/repo/public"
SVNREPO="/var/abs"
# Repos from Arch
@@ -12,7 +11,7 @@ USERREPOS=('~smv' '~xihh' '~brendan' '~lukeshu' '~emulatorman' '~aurelien' '~jor
# Community project repos
PROJREPOS=('pcr' 'kernels' 'cross' 'java' 'java-ugly' 'nonprism')
# Remote repos
-PKGREPOS=(${ARCHREPOS[@]} ${OURREPOS[@]} ${USERREPOS[@]} ${PROJREPOS[@]})
+PKGREPOS=("${ARCHREPOS[@]}" "${OURREPOS[@]}" "${USERREPOS[@]}" "${PROJREPOS[@]}")
PKGPOOL='pool/packages'
SRCPOOL='sources/packages'
@@ -37,7 +36,7 @@ REQUIRE_SIGNATURE=true
LOCK_DELAY=10
LOCK_TIMEOUT=300
-[ -n "${STAGING:-}" ] || STAGING="$FTP_BASE/staging"
+[ -n "${STAGING:-}" ] || STAGING="$HOME/staging"
TMPDIR="/tmp"
ARCHARCHES=(i686 x86_64)
OURARCHES=(mips64el)