diff options
Diffstat (limited to 'config')
-rw-r--r-- | config | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,7 +1,7 @@ #!/bin/bash -FTP_BASE="/home/parabolavnx/parabolagnulinux.org/repo" -ARCH_BASE="/home/parabolavnx/parabolagnulinux.org/repo" -SVNREPO="/home/parabolavnx/parabolagnulinux.org/abslibre" +FTP_BASE="/home/repo/public" +ARCH_BASE="/home/repo/public" +SVNREPO="/home/repo/abslibre" # Repos from Arch ARCHREPOS=('core' 'extra' 'community' 'testing' 'multilib') @@ -31,7 +31,7 @@ LOCK_DELAY=10 LOCK_TIMEOUT=300 STAGING="$FTP_BASE/staging" -TMPDIR="$HOME/tmp" +TMPDIR="/tmp" ARCHARCHES=(i686 x86_64) ARCHES=(${ARCHARCHES[@]} mips64el) DBEXT=".db.tar.gz" @@ -39,5 +39,5 @@ FILESEXT=".files.tar.gz" PKGEXT=".pkg.tar.?z" SRCEXT=".src.tar.gz" -MAKEPKGCONF="$HOME/etc/makepkg.conf" +MAKEPKGCONF="/etc/makepkg.conf" BLACKLIST_FILE="$HOME/blacklist/blacklist.txt" |