blob: aefdd93362729e1a3cd6b81027151740824c13fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo "> Don't forget to update your plugins running as root:"
echo "> nikto -update"
echo ""
}
post_upgrade() {
post_install $1
}
pre_remove() {
/bin/true
}
|