mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
build.sh: Allow to customize default state_dir and runtime_dir values
Intended for use in Docker container building.
This commit is contained in:
parent
9915c8a881
commit
ff6eee17eb
1 changed files with 27 additions and 5 deletions
32
build.sh
32
build.sh
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/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"
|
eval set -- "$options"
|
||||||
print_help() {
|
print_help() {
|
||||||
cat >&2 <<EOF
|
cat >&2 <<EOF
|
||||||
|
@ -20,6 +20,10 @@ Options:
|
||||||
(default: \$PREFIX/lib/systemd, \$SYSTEMDUNITS)
|
(default: \$PREFIX/lib/systemd, \$SYSTEMDUNITS)
|
||||||
--configdir <path> directory to install configuration files to
|
--configdir <path> directory to install configuration files to
|
||||||
(default: /etc/maddy/, \$CONFDIR)
|
(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
|
--fail2bandir <path> directory to install fail2ban configuration to
|
||||||
(default: /etc/fail2ban, \$FAIL2BANDIR)
|
(default: /etc/fail2ban, \$FAIL2BANDIR)
|
||||||
--gitversion <revision> git commit or tag to checkout if not building inside
|
--gitversion <revision> git commit or tag to checkout if not building inside
|
||||||
|
@ -93,6 +97,12 @@ read_config() {
|
||||||
if [ -z "$CONFDIR" ]; then
|
if [ -z "$CONFDIR" ]; then
|
||||||
export CONFDIR=/etc/maddy
|
export CONFDIR=/etc/maddy
|
||||||
fi
|
fi
|
||||||
|
if [ -z "$STATEDIR" ]; then
|
||||||
|
export STATEDIR=/var/lib/maddy
|
||||||
|
fi
|
||||||
|
if [ -z "$RUNTIMEDIR" ]; then
|
||||||
|
export RUNTIMEDIR=/run/maddy
|
||||||
|
fi
|
||||||
if [ -z "$FAIL2BANDIR" ]; then
|
if [ -z "$FAIL2BANDIR" ]; then
|
||||||
export FAIL2BANDIR=/etc/fail2ban
|
export FAIL2BANDIR=/etc/fail2ban
|
||||||
fi
|
fi
|
||||||
|
@ -137,6 +147,14 @@ read_config() {
|
||||||
shift
|
shift
|
||||||
export CONFDIR="$1"
|
export CONFDIR="$1"
|
||||||
;;
|
;;
|
||||||
|
--statedir)
|
||||||
|
shift
|
||||||
|
export STATEDIR="$1"
|
||||||
|
;;
|
||||||
|
--runtimedir)
|
||||||
|
shift
|
||||||
|
export RUNTIMEDIR="$1"
|
||||||
|
;;
|
||||||
--fail2bandir)
|
--fail2bandir)
|
||||||
shift
|
shift
|
||||||
export FAIL2BANDIR="$1"
|
export FAIL2BANDIR="$1"
|
||||||
|
@ -255,6 +273,10 @@ ensure_source_tree() {
|
||||||
pushd "$MADDY_SRC" >/dev/null
|
pushd "$MADDY_SRC" >/dev/null
|
||||||
git stash push --quiet --all
|
git stash push --quiet --all
|
||||||
git fetch origin master
|
git fetch origin master
|
||||||
|
|
||||||
|
if [ "$GITVERSION" != "" ]; then
|
||||||
|
git checkout --quiet "$GITVERSION"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
MADDY_SRC="$(dirname "$gomod")"
|
MADDY_SRC="$(dirname "$gomod")"
|
||||||
export MADDY_SRC
|
export MADDY_SRC
|
||||||
|
@ -269,10 +291,6 @@ ensure_source_tree() {
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$GITVERSION" != "" ]; then
|
|
||||||
git checkout --quiet "$GITVERSION"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Turn vVERSION-COMMITS-HASH into VERSION-devCOMMITS+HASH with minor
|
# Turn vVERSION-COMMITS-HASH into VERSION-devCOMMITS+HASH with minor
|
||||||
# component of VERSION increased by one if the amount of commits since last
|
# component of VERSION increased by one if the amount of commits since last
|
||||||
# tag is more than one.
|
# tag is more than one.
|
||||||
|
@ -317,6 +335,8 @@ compile_binaries() {
|
||||||
go build -trimpath -buildmode=pie \
|
go build -trimpath -buildmode=pie \
|
||||||
-ldflags "-extldflags \"$LDFLAGS\" \
|
-ldflags "-extldflags \"$LDFLAGS\" \
|
||||||
-X \"github.com/foxcpp/maddy.DefaultLibexecDirectory=$PREFIX/lib/maddy\" \
|
-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.ConfigDirectory=$CONFDIR\" \
|
||||||
-X \"github.com/foxcpp/maddy.Version=$MADDY_VER\"" \
|
-X \"github.com/foxcpp/maddy.Version=$MADDY_VER\"" \
|
||||||
-o "$PKGDIR/$PREFIX/bin/maddy" ./cmd/maddy
|
-o "$PKGDIR/$PREFIX/bin/maddy" ./cmd/maddy
|
||||||
|
@ -325,6 +345,8 @@ compile_binaries() {
|
||||||
go build -trimpath -buildmode=pie \
|
go build -trimpath -buildmode=pie \
|
||||||
-ldflags "-extldflags \"$LDFLAGS\" \
|
-ldflags "-extldflags \"$LDFLAGS\" \
|
||||||
-X \"github.com/foxcpp/maddy.DefaultLibexecDirectory=$PREFIX/lib/maddy\" \
|
-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.ConfigDirectory=$CONFDIR\" \
|
||||||
-X \"github.com/foxcpp/maddy.Version=$MADDY_VER\"" \
|
-X \"github.com/foxcpp/maddy.Version=$MADDY_VER\"" \
|
||||||
-o "$PKGDIR/$PREFIX/bin/maddyctl" ./cmd/maddyctl
|
-o "$PKGDIR/$PREFIX/bin/maddyctl" ./cmd/maddyctl
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue