diff --git a/dist/install.sh b/dist/install.sh new file mode 100755 index 0000000..c5fe42d --- /dev/null +++ b/dist/install.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +if [ -z "$PREFIX" ]; then + PREFIX=/usr/local +fi +if [ -z "$FAIL2BANDIR" ]; then + FAIL2BANDIR=/etc/fail2ban +fi + +install -Dm 0644 -t "$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 "$PREFIX/share/vim/vimfiles/syntax/" vim/syntax/maddy-conf.vim + +install -Dm 0644 -t "$FAIL2BANDIR/jail.d/" fail2ban/jail.d/* +install -Dm 0644 -t "$FAIL2BANDIR/filter.d/" fail2ban/filter.d/* + +install -Dm 0644 -t "$PREFIX/lib/systemd/system/" systemd/maddy.service systemd/maddy@.service diff --git a/get.sh b/get.sh index b88e60c..867ee04 100755 --- a/get.sh +++ b/get.sh @@ -82,6 +82,11 @@ download_and_compile() { go get -trimpath -buildmode=pie -ldflags "-extldflags $LDFLAGS" github.com/foxcpp/maddy/cmd/{maddy,maddyctl}@$MADDYVERSION } +source_dir() { + maddy_version_tag=`"$PWD/gopath/bin/maddy" -v | cut -f2 -d ' '` + echo $PWD/gopath/pkg/mod/github.com/foxcpp/maddy@$maddy_version_tag +} + install_executables() { echo 'Installing maddy...' >&2 @@ -89,19 +94,45 @@ install_executables() { $SUDO cp --remove-destination "$PWD/gopath/bin/maddy" "$PWD/gopath/bin/maddyctl" "$PREFIX/bin/" } -install_systemd() { - echo 'Downloading and installing systemd unit files...' >&2 +install_dist() { + echo 'Installing dist files...' >&2 - wget -q "https://raw.githubusercontent.com/foxcpp/maddy/$MADDYVERSION/dist/systemd/maddy.service" -O maddy.service - wget -q "https://raw.githubusercontent.com/foxcpp/maddy/$MADDYVERSION/dist/systemd/maddy@.service" -O maddy@.service + pushd "`source_dir`/dist" >/dev/null + $SUDO ./install.sh + popd >/dev/null - sed -Ei "s!/usr/bin!$PREFIX/bin!g" maddy.service maddy@.service + $SUDO sed -Ei "s!/usr/bin!$PREFIX/bin!g" "$SYSTEMDUNITS/system/maddy.service" "$SYSTEMDUNITS/system/maddy@.service" - $SUDO mkdir -p "$SYSTEMDUNITS/system/" - $SUDO cp maddy.service maddy@.service "$SYSTEMDUNITS/system/" $SUDO systemctl daemon-reload } +install_man() { + set +e + if ! which scdoc &>/dev/null; then + echo 'No scdoc utility found. Skipping man pages installation.' >&2 + set -e + return + fi + if ! which gzip &>/dev/null; then + echo 'No gzip utility found. Skipping man pages installation.' >&2 + set -e + return + fi + set -e + + echo 'Installing man pages...' >&2 + for f in `source_dir`/man/*.1.scd; do + scdoc < "$f" | gzip > tmp.gz + $SUDO install -Dm 0644 tmp.gz "$PREFIX/share/man/man1" + done + for f in `source_dir`/man/*.5.scd; do + scdoc < "$f" | gzip > tmp.gz + $SUDO install -Dm 0644 tmp.gz "$PREFIX/share/man/man5" + done + rm tmp.gz + +} + create_user() { echo 'Creating maddy user and group...' >&2 @@ -111,10 +142,9 @@ create_user() { install_config() { echo 'Using configuration path:' $CONFPATH if ! [ -e "$CONFPATH" ]; then - echo 'Downloading and installing default configuration...' >&2 + echo 'Installing default configuration...' >&2 - wget -q "https://raw.githubusercontent.com/foxcpp/maddy/$MADDYVERSION/maddy.conf" -O maddy.conf - $SUDO mkdir -p /etc/maddy/ + cp "`source_dir`/maddy.conf" . host=`hostname` read -p "What's your domain, btw? [$host] > " DOMAIN @@ -126,7 +156,7 @@ install_config() { sed -Ei "s/^\\$\\(primary_domain\) = .+$/$\(primary_domain\) = $DOMAIN/" maddy.conf sed -Ei "s/^\\$\\(hostname\) = .+$/$\(hostname\) = $DOMAIN/" maddy.conf - $SUDO cp maddy.conf $CONFPATH + $SUDO install -Dm 0644 maddy.conf "$CONFPATH" else echo "Configuration already exists in /etc/maddy/maddy.conf, skipping defaults installation." >&2 fi @@ -139,7 +169,8 @@ run() { ensure_go_toolchain download_and_compile install_executables - install_systemd + install_dist + install_man install_config create_user