summarylogtreecommitdiffstats
path: root/nessus.install
blob: 9c72eadc72ae7a6a81812d4b1f6498f05b140b1d (plain)
1
2
3
4
5
6
7
8
9
10
11
post_install() {
    echo "See https://wiki.archlinux.org/index.php/Nessus and the nessus man pages for documentation."
    ldconfig
}

pre_remove() {
    if [ -f /opt/nessus/var/nessus/nessusd.pid ]; then
        echo "Shutting down the Nessus server."
        kill $(cat /opt/nessus/var/nessus/nessusd.pid) >/dev/null 2>&1
    fi
}