blob: d1b0a8ff887b8190c08ed2402715d4bd6973c486 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
post_install() {
ln -s /opt/armitage/armitage /usr/bin/armitage
echo "
====================================================================
Please refer to armitage's documentation for usage informations:
http://www.fastandeasyhacking.com/manual
====================================================================
Postgresql databases in metasploit are mandatory for armitage usage:
https://wiki.archlinux.org/index.php/Metasploit_Framework
https://wiki.archlinux.org/index.php/Postgresql
copy the sample metasploit database config from
/usr/share/metasploit/database.yml.sample to ~/.msf4/database.yml and added your
Postgresql username and password.
"
}
pre_remove() {
rm -f /usr/bin/armitage
}
|