get.sh: Installl files from dist/ and man pages

This commit is contained in:
fox.cpp 2019-11-19 16:34:30 +03:00
parent fad3f685a6
commit f569d7e941
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
2 changed files with 60 additions and 12 deletions

17
dist/install.sh vendored Executable file
View file

@ -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