add64aa2e4
Split $DIST to distribution name and version (builder_setup script) and search for scripts first $DIST-specific, but then for given distribution. Also move out some Fedora-specific things to scripts_fc17.
23 lines
279 B
Bash
23 lines
279 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
|
|
|
|
export SCRIPTSDIR
|