build.sh: Allow to customize default state_dir and runtime_dir values

Intended for use in Docker container building.
This commit is contained in:
fox.cpp 2020-03-13 02:57:40 +03:00
parent 9915c8a881
commit ff6eee17eb
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash
options=$(getopt -o hb:p:d: -l help,builddir:,prefix:,destdir:,systemddir:,configdir:,fail2bandir:,prefix:,gitversion:,version:,source:,sudo -- "$@")
options=$(getopt -o hb:p:d: -l help,builddir:,prefix:,destdir:,systemddir:,configdir:,statedir:,runtimedir:,fail2bandir:,prefix:,gitversion:,version:,source:,sudo -- "$@")
eval set -- "$options"
print_help() {
cat >&2 <<EOF
@ -20,6 +20,10 @@ Options:
(default: \$PREFIX/lib/systemd, \$SYSTEMDUNITS)
--configdir <path> directory to install configuration files to
(default: /etc/maddy/, \$CONFDIR)
--statedir <path> default state directory location
(default: /var/lib/maddy, \$STATEDIR)
--runtimedir <path> default runtime directory location
(default: /run/maddy, \$RUNTIMEDIR)
--fail2bandir <path> directory to install fail2ban configuration to
(default: /etc/fail2ban, \$FAIL2BANDIR)
--gitversion <revision> git commit or tag to checkout if not building inside
@ -93,6 +97,12 @@ read_config() {
if [ -z "$CONFDIR" ]; then
export CONFDIR=/etc/maddy
fi
if [ -z "$STATEDIR" ]; then
export STATEDIR=/var/lib/maddy
fi
if [ -z "$RUNTIMEDIR" ]; then
export RUNTIMEDIR=/run/maddy
fi
if [ -z "$FAIL2BANDIR" ]; then
export FAIL2BANDIR=/etc/fail2ban
fi
@ -137,6 +147,14 @@ read_config() {
shift
export CONFDIR="$1"
;;
--statedir)
shift
export STATEDIR="$1"
;;
--runtimedir)
shift
export RUNTIMEDIR="$1"
;;
--fail2bandir)
shift
export FAIL2BANDIR="$1"
@ -255,6 +273,10 @@ ensure_source_tree() {
pushd "$MADDY_SRC" >/dev/null
git stash push --quiet --all
git fetch origin master
if [ "$GITVERSION" != "" ]; then
git checkout --quiet "$GITVERSION"
fi
else
MADDY_SRC="$(dirname "$gomod")"
export MADDY_SRC
@ -269,10 +291,6 @@ ensure_source_tree() {
return
fi
if [ "$GITVERSION" != "" ]; then
git checkout --quiet "$GITVERSION"
fi
# Turn vVERSION-COMMITS-HASH into VERSION-devCOMMITS+HASH with minor
# component of VERSION increased by one if the amount of commits since last
# tag is more than one.
@ -317,6 +335,8 @@ compile_binaries() {
go build -trimpath -buildmode=pie \
-ldflags "-extldflags \"$LDFLAGS\" \
-X \"github.com/foxcpp/maddy.DefaultLibexecDirectory=$PREFIX/lib/maddy\" \
-X \"github.com/foxcpp/maddy.DefaultStateDirectory=$STATEDIR\" \
-X \"github.com/foxcpp/maddy.DefaultRuntimeDirectory=$RUNTIMEDIR\" \
-X \"github.com/foxcpp/maddy.ConfigDirectory=$CONFDIR\" \
-X \"github.com/foxcpp/maddy.Version=$MADDY_VER\"" \
-o "$PKGDIR/$PREFIX/bin/maddy" ./cmd/maddy
@ -325,6 +345,8 @@ compile_binaries() {
go build -trimpath -buildmode=pie \
-ldflags "-extldflags \"$LDFLAGS\" \
-X \"github.com/foxcpp/maddy.DefaultLibexecDirectory=$PREFIX/lib/maddy\" \
-X \"github.com/foxcpp/maddy.DefaultStateDirectory=$STATEDIR\" \
-X \"github.com/foxcpp/maddy.DefaultRuntimeDirectory=$RUNTIMEDIR\" \
-X \"github.com/foxcpp/maddy.ConfigDirectory=$CONFDIR\" \
-X \"github.com/foxcpp/maddy.Version=$MADDY_VER\"" \
-o "$PKGDIR/$PREFIX/bin/maddyctl" ./cmd/maddyctl