diff options
Diffstat (limited to 'apps/admin/denyhosts/denyhosts.SlackBuild')
-rwxr-xr-x | apps/admin/denyhosts/denyhosts.SlackBuild | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/apps/admin/denyhosts/denyhosts.SlackBuild b/apps/admin/denyhosts/denyhosts.SlackBuild deleted file mode 100755 index 42184a02..00000000 --- a/apps/admin/denyhosts/denyhosts.SlackBuild +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash -# -# SlackBuild script to call denyhosts.build with correct settings -# - -CWD="`pwd`" - -if [ -f ~/.slackbuildrc ]; then - source ~/.slackbuildrc -elif [ -f /etc/slackbuildrc ]; then - source /etc/slackbuildrc -fi - -# default settings -PACKAGE="denyhosts" -VERSION=${VERSION:=2.5} -ARCH=${ARCH:=i486} -BUILD=${BUILD:=1rha} -SRC_DIR=${SRC:=$CWD} -TMP=${TMP:=/tmp} -REPOS=${REPOS:=$TMP} - -rm -rf $TMP/$PACKAGE -mkdir -p $SRC_DIR/$PACKAGE $TMP/$PACKAGE - -slacktrack -b $REPOS -x $TMP,$SRC_DIR,/dev -jefkzp "$PACKAGE-$VERSION-$ARCH-$BUILD.tgz" "./$PACKAGE.build" - -if [ "$CLEANUP" == "yes" ]; then - rm -rf $TMP/$PACKAGE -fi |