mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
da5409bfce
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
136 lines
4.8 KiB
Bash
136 lines
4.8 KiB
Bash
#!/bin/sh
|
|
|
|
# Slackware build script for Metasploit Framework
|
|
|
|
# Copyright 2010-2011 Marco Bonetti <sid77@slackware.it>
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use of this script, with or without modification, is
|
|
# permitted provided that the following conditions are met:
|
|
#
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
PRGNAM=framework
|
|
VERSION=${VERSION:-4.0.0}
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-_SBo}
|
|
|
|
# Automatically determine the architecture we're building on:
|
|
if [ -z "$ARCH" ]; then
|
|
case "$( uname -m )" in
|
|
i?86) ARCH=i486 ;;
|
|
arm*) ARCH=arm ;;
|
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
|
*) ARCH=$( uname -m ) ;;
|
|
esac
|
|
fi
|
|
|
|
CWD=$(pwd)
|
|
TMP=${TMP:-/tmp/SBo}
|
|
PKG=$TMP/package-$PRGNAM
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
BASEINSTDIR="opt"
|
|
INSTDIR="$BASEINSTDIR/framework-${VERSION}"
|
|
|
|
# PostgreSQL user and group
|
|
PG_UID=${PG_UID:-209}
|
|
PG_GID=${PG_GID:-209}
|
|
|
|
# On which port is PostgreSQL listening to?
|
|
# Default is 7175, set PG_PORT to any other value if you want to customize it.
|
|
PG_PORT=${PG_PORT:-7175}
|
|
|
|
# Bail out if user or group isn't valid on your system
|
|
# For slackbuilds.org, assigned postgres uid/gid are 209/209
|
|
# See http://slackbuilds.org/uid_gid.txt
|
|
# Other popular choice is 26/26
|
|
if ! grep ^postgres: /etc/group 2>&1 > /dev/null; then
|
|
echo " You must have a postgres group to run this script."
|
|
echo " # groupadd -g $PG_GID postgres"
|
|
exit 1
|
|
elif ! grep ^postgres: /etc/passwd 2>&1 > /dev/null; then
|
|
echo " You must have a postgres user to run this script."
|
|
echo " # useradd -u $PG_UID -g $PG_GID -d /var/lib/pgsql postgres"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$ARCH" = "i486" ]; then
|
|
INSTALLERARCH=""
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
INSTALLERARCH=""
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
INSTALLERARCH="-x64"
|
|
fi
|
|
|
|
set -e
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
# Install Metasploit Framework DIRECTLY under /opt/framework-${VRESION} (sorry!)
|
|
echo "Installing the Metasploit Framework..."
|
|
chown root:root $CWD/framework-$VERSION-linux$INSTALLERARCH-full.run
|
|
chmod 755 $CWD/framework-$VERSION-linux$INSTALLERARCH-full.run
|
|
$CWD/framework-$VERSION-linux$INSTALLERARCH-full.run \
|
|
--mode unattended \
|
|
--unattendedmodeui minimal \
|
|
--postgres_port $PG_PORT
|
|
|
|
# Stop Metasploit Framework PostgreSQL
|
|
echo "Stopping Metasploit Framework PostgreSQL..."
|
|
/etc/init.d/framework-postgres stop
|
|
|
|
# Move install dir
|
|
mkdir -p $PKG/$BASEINSTDIR
|
|
mv /$INSTDIR $PKG/$BASEINSTDIR/
|
|
|
|
# Fix init script and move it to the right directory
|
|
# This script is not handled by the uninstaller and the user should not call
|
|
# the uninstall script anyway, so no problem if we made it more Slackware-ish
|
|
echo "Fixing Metasploit Framework PostgreSQL init script..."
|
|
mkdir -p $PKG/etc/rc.d
|
|
mv /etc/init.d/framework-postgres $PKG/etc/rc.d/rc.framework-postgres.new
|
|
chown root:root $PKG/etc/rc.d/rc.framework-postgres.new
|
|
chmod 755 $PKG/etc/rc.d/rc.framework-postgres.new
|
|
|
|
# Install /usr/bin links
|
|
mkdir -p $PKG/usr/bin
|
|
echo "Installing links into /usr/bin..."
|
|
( cd $PKG/usr/bin
|
|
for file in $(ls ../../$INSTDIR/app/msf*); do
|
|
ln -sf $file $(basename $file)
|
|
done
|
|
# also links armitage
|
|
ln -sf ../../$INSTDIR/app/armitage armitage
|
|
)
|
|
|
|
# Every useful doc is included inside the framework folder, just copy over the
|
|
# README which contains the important copyright disclaimer and the cron script
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cp -a $PKG/$INSTDIR/msf3/README $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cat $CWD/msfupdate.sh > $PKG/usr/doc/$PRGNAM-$VERSION/msfupdate.sh
|
|
cat $CWD/msfupdate.logrotate > $PKG/usr/doc/$PRGNAM-$VERSION/msfupdate.logrotate
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
cat $CWD/README.SLACKWARE > $PKG/usr/doc/$PRGNAM-$VERSION/README.SLACKWARE
|
|
|
|
mkdir -p $PKG/install
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
|
|
|
# Do NOT chown -R root:root or it will bork the shipped PostgreSQL
|
|
# installation: the bitrock installer should have taken care of permissions
|
|
cd $PKG
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|