contrib/denyhost/Pkgfile

42 lines
1.1 KiB
Plaintext

# Description: A script intended to be run by Linux system administrators to help thwart ssh server attacks.
# URL: https://github.com/denyhosts/denyhosts
# Maintainer: unmaintained
# Depends on: python
name=denyhost
version=2.10
release=1
source=(https://github.com/denyhosts/denyhosts/archive/v$version/$name-$version.tar.gz)
build() {
cd denyhosts-$version
/usr/bin/python setup.py install --root=$PKG
chmod g-w $PKG/usr/share/man/man8/$name* \
$PKG/etc/denyhosts.conf
install -d $PKG/etc/{denyhosts,rc.d} $PKG/usr/sbin
mv $PKG/etc/denyhosts.conf \
$PKG/etc/denyhosts/denyhosts.conf
mv $PKG/usr/bin/daemon-control-dist \
$PKG/etc/rc.d/denyhosts
mv $PKG/usr/bin/denyhosts.py $PKG/usr/sbin/denyhosts
rmdir $PKG/usr/bin
sed -i \
-e 's|^DENYHOSTS_LOCK = .*|DENYHOSTS_LOCK = "/var/run/denyhosts.pid"|' \
-e 's|^DENYHOSTS_CFG = .*|DENYHOSTS_CFG = "/etc/denyhosts/denyhosts.conf"|' \
$PKG/etc/rc.d/denyhosts
sed -i \
-e 's|^SECURE_LOG = /var/log/auth.log|SECURE_LOG = /var/log/auth|' \
-e 's|^IPTABLES = /sbin/iptables|IPTABLES = /usr/sbin/iptables|' \
-e 's|^# BLOCKPORT = 22|BLOCKPORT = 22|' \
$PKG/etc/denyhosts/denyhosts.conf
}