afc68b641c
Do not download anything directly in template-builder root. Also do not download and extract archlinux iso if existing file is current.
25 lines
310 B
Bash
25 lines
310 B
Bash
#!/bin/bash
|
|
|
|
# Setup env variables
|
|
|
|
case "$DIST" in
|
|
fc*)
|
|
DISTRIBUTION=fedora
|
|
VERSION=${DIST/fc/}
|
|
;;
|
|
*)
|
|
DISTRIBUTION="$DIST"
|
|
VERSION=
|
|
;;
|
|
esac
|
|
|
|
if [ -d "scripts_$DIST" ]; then
|
|
SCRIPTSDIR="scripts_$DIST"
|
|
else
|
|
SCRIPTSDIR="scripts_$DISTRIBUTION"
|
|
fi
|
|
|
|
CACHEDIR=cache_$DIST
|
|
|
|
export SCRIPTSDIR CACHEDIR
|