From c9b228669fc4c8246b598c42011203bc064ad6c6 Mon Sep 17 00:00:00 2001 From: Andrea Villa Date: Sun, 17 Feb 2013 12:35:10 -0600 Subject: network/metasploit: Added (The Metasploit Framework) Signed-off-by: Robby Workman --- network/metasploit/doinst.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 network/metasploit/doinst.sh (limited to 'network/metasploit/doinst.sh') diff --git a/network/metasploit/doinst.sh b/network/metasploit/doinst.sh new file mode 100644 index 0000000000000..70d26b8dc4fcf --- /dev/null +++ b/network/metasploit/doinst.sh @@ -0,0 +1,23 @@ +config() { + NEW="$1" + OLD="`dirname $NEW`/`basename $NEW .new`" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +# Keep same perms on rc.metasploit.new: +if [ -e etc/rc.d/rc.metasploit ]; then + cp -a etc/rc.d/rc.metasploit etc/rc.d/rc.metasploit.new.incoming + cat etc/rc.d/rc.metasploit.new > etc/rc.d/rc.metasploit.new.incoming + mv etc/rc.d/rc.metasploit.new.incoming etc/rc.d/rc.metasploit.new +fi + +config etc/rc.d/rc.metasploit.new +# Initialize a msf3 git repo for msfupdate +( cd opt/metasploit/apps/pro/msf3 + git init >/dev/null ) -- cgit v1.2.3