get.sh: Add DESTDIR environent variable support and set default values in binary

It is separate from the PREFIX variable which specifies the path use
*within* the system tree whereas DESTDIR specifies the path to the
system tree itself.  For get.sh-based installation, DESTDIR=""
PREFIX=/usr/local. For package.sh DESTDIR is a temporary directory and
PREFIx=/usr.

With that change it is now possible to set the default libexec directory
to a correct value depending on the PREFIX variable.
This commit is contained in:
fox.cpp 2019-11-29 17:53:21 +03:00
parent 4f876d81f3
commit 1f7340fe6c
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
3 changed files with 34 additions and 17 deletions

17
dist/install.sh vendored
View file

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
DESTDIR=$DESTDIR
if [ -z "$PREFIX" ]; then if [ -z "$PREFIX" ]; then
PREFIX=/usr/local PREFIX=/usr/local
fi fi
@ -13,14 +14,14 @@ fi
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd $script_dir cd $script_dir
install -Dm 0644 -t "$PREFIX/share/vim/vimfiles/ftdetect/" vim/ftdetect/maddy-conf.vim install -Dm 0644 -t "$DESTDIR/$PREFIX/share/vim/vimfiles/ftdetect/" vim/ftdetect/maddy-conf.vim
install -Dm 0644 -t "$PREFIX/share/vim/vimfiles/ftplugin/" vim/ftplugin/maddy-conf.vim install -Dm 0644 -t "$DESTDIR/$PREFIX/share/vim/vimfiles/ftplugin/" vim/ftplugin/maddy-conf.vim
install -Dm 0644 -t "$PREFIX/share/vim/vimfiles/syntax/" vim/syntax/maddy-conf.vim install -Dm 0644 -t "$DESTDIR/$PREFIX/share/vim/vimfiles/syntax/" vim/syntax/maddy-conf.vim
install -Dm 0644 -t "$FAIL2BANDIR/jail.d/" fail2ban/jail.d/* install -Dm 0644 -t "$DESTDIR/$FAIL2BANDIR/jail.d/" fail2ban/jail.d/*
install -Dm 0644 -t "$FAIL2BANDIR/filter.d/" fail2ban/filter.d/* install -Dm 0644 -t "$DESTDIR/$FAIL2BANDIR/filter.d/" fail2ban/filter.d/*
install -Dm 0644 -t "$PREFIX/lib/systemd/system/" systemd/maddy.service systemd/maddy@.service install -Dm 0644 -t "$DESTDIR/$PREFIX/lib/systemd/system/" systemd/maddy.service systemd/maddy@.service
install -Dm 0644 -t "$CONFDIR/integration/" integration/rspamd.conf install -Dm 0644 -t "$DESTDIR/$CONFDIR/integration/" integration/rspamd.conf
install -Dm 0755 -t "$PREFIX/bin/" scripts/maddy-rspamd-hook install -Dm 0755 -t "$DESTDIR/$PREFIX/bin/" scripts/maddy-rspamd-hook

24
get.sh
View file

@ -2,6 +2,10 @@
REQUIRED_GOVERSION=1.13.0 REQUIRED_GOVERSION=1.13.0
# This will make sure the variable safe to use after 'set -u'
# if it is not defined, the empty value is fine.
DESTDIR=$DESTDIR
if [ "$GOVERSION" == "" ]; then if [ "$GOVERSION" == "" ]; then
GOVERSION=1.13.4 GOVERSION=1.13.4
fi fi
@ -85,7 +89,11 @@ download_and_compile() {
export GO111MODULE=on export GO111MODULE=on
go get -trimpath -buildmode=pie -ldflags "-extldflags $LDFLAGS" github.com/foxcpp/maddy/cmd/{maddy,maddyctl}@$MADDYVERSION go get -trimpath -buildmode=pie \
-ldflags "-extldflags $LDFLAGS \
-X \"github.com/foxcpp/maddy.DefaultLibexecDirectory=$PREFIX/lib/maddy\" \
-X \"github.com/foxcpp/maddy.ConfigDirectory=$CONFDIR\"" \
github.com/foxcpp/maddy/cmd/{maddy,maddyctl}@$MADDYVERSION
} }
source_dir() { source_dir() {
@ -96,8 +104,8 @@ source_dir() {
install_executables() { install_executables() {
echo 'Installing maddy...' >&2 echo 'Installing maddy...' >&2
$SUDO mkdir -p "$PREFIX/bin" $SUDO mkdir -p "$DESTDIR/$PREFIX/bin"
$SUDO cp --remove-destination "$PWD/gopath/bin/maddy" "$PWD/gopath/bin/maddyctl" "$PREFIX/bin/" $SUDO cp --remove-destination "$PWD/gopath/bin/maddy" "$PWD/gopath/bin/maddyctl" "$DESTDIR/$PREFIX/bin/"
} }
install_dist() { install_dist() {
@ -105,7 +113,7 @@ install_dist() {
$SUDO bash "$(source_dir)/dist/install.sh" $SUDO bash "$(source_dir)/dist/install.sh"
$SUDO sed -Ei "s!/usr/bin!$PREFIX/bin!g" "$SYSTEMDUNITS/system/maddy.service" "$SYSTEMDUNITS/system/maddy@.service" $SUDO sed -Ei "s!/usr/bin!$PREFIX/bin!g" "$DESTDIR/$SYSTEMDUNITS/system/maddy.service" "$DESTDIR/$SYSTEMDUNITS/system/maddy@.service"
} }
install_man() { install_man() {
@ -125,11 +133,11 @@ install_man() {
echo 'Installing man pages...' >&2 echo 'Installing man pages...' >&2
for f in "$(source_dir)"/man/*.1.scd; do for f in "$(source_dir)"/man/*.1.scd; do
scdoc < "$f" | gzip > /tmp/maddy-tmp.gz scdoc < "$f" | gzip > /tmp/maddy-tmp.gz
$SUDO install -Dm 0644 /tmp/maddy-tmp.gz "$PREFIX/share/man/man1/$(basename -s .scd "$f").gz" $SUDO install -Dm 0644 /tmp/maddy-tmp.gz "$DESTDIR/$PREFIX/share/man/man1/$(basename -s .scd "$f").gz"
done done
for f in "$(source_dir)"/man/*.5.scd; do for f in "$(source_dir)"/man/*.5.scd; do
scdoc < "$f" | gzip > /tmp/maddy-tmp.gz scdoc < "$f" | gzip > /tmp/maddy-tmp.gz
$SUDO install -Dm 0644 /tmp/maddy-tmp.gz "$PREFIX/share/man/man5/$(basename -s .scd "$f").gz" $SUDO install -Dm 0644 /tmp/maddy-tmp.gz "$DESTDIR/$PREFIX/share/man/man5/$(basename -s .scd "$f").gz"
done done
rm /tmp/maddy-tmp.gz rm /tmp/maddy-tmp.gz
@ -143,7 +151,7 @@ create_user() {
install_config() { install_config() {
echo 'Using configuration path:' $CONFDIR/maddy.conf echo 'Using configuration path:' $CONFDIR/maddy.conf
if ! [ -e "$CONFDIR/maddy.conf" ]; then if ! [ -e "$DESTDIR/$CONFDIR/maddy.conf" ]; then
echo 'Installing default configuration...' >&2 echo 'Installing default configuration...' >&2
install "$(source_dir)/maddy.conf" /tmp/maddy.conf install "$(source_dir)/maddy.conf" /tmp/maddy.conf
@ -160,7 +168,7 @@ install_config() {
sed -Ei "s/^\\$\\(primary_domain\) = .+$/$\(primary_domain\) = $DOMAIN/" /tmp/maddy.conf sed -Ei "s/^\\$\\(primary_domain\) = .+$/$\(primary_domain\) = $DOMAIN/" /tmp/maddy.conf
sed -Ei "s/^\\$\\(hostname\) = .+$/$\(hostname\) = $DOMAIN/" /tmp/maddy.conf sed -Ei "s/^\\$\\(hostname\) = .+$/$\(hostname\) = $DOMAIN/" /tmp/maddy.conf
$SUDO install -Dm 0644 /tmp/maddy.conf "$CONFDIR/maddy.conf" $SUDO install -Dm 0644 /tmp/maddy.conf "$DESTDIR/$CONFDIR/maddy.conf"
rm /tmp/maddy.conf rm /tmp/maddy.conf
else else
echo "Configuration already exists in /etc/maddy/maddy.conf, skipping defaults installation." >&2 echo "Configuration already exists in /etc/maddy/maddy.conf, skipping defaults installation." >&2

View file

@ -15,7 +15,15 @@ if [ "$pkgdir" = "" ]; then
rm -rf "$pkgdir" rm -rf "$pkgdir"
mkdir "$pkgdir" mkdir "$pkgdir"
fi fi
export PREFIX="$pkgdir"/usr FAIL2BANDIR="$pkgdir"/etc/fail2ban CONFDIR="$pkgdir"/etc/maddy NO_RUN=1 SUDO=fakeroot HOSTNAME=example.org
if [ "$PREFIX" = "" ]; then
export PREFIX="/usr"
fi
if [ "$HOSTNAME" = "" ]; then
export HOSTNAME=example.org
fi
export DESTDIR="$pkgdir" NO_RUN=1 SUDO=fakeroot
# shellcheck source=get.sh # shellcheck source=get.sh
. "$script_dir"/get.sh . "$script_dir"/get.sh