aboutsummaryrefslogtreecommitdiff
path: root/network/metasploit/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'network/metasploit/doinst.sh')
-rw-r--r--network/metasploit/doinst.sh23
1 files changed, 23 insertions, 0 deletions
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 )