Merge pull request #133 from CoresecSystems/master

Update nessus to 6.9,1
This commit is contained in:
Anton Bolshakov 2016-11-16 13:26:27 +08:00 committed by GitHub
commit 0dd0a31f3f
2 changed files with 18 additions and 13 deletions

View file

@ -1 +1 @@
DIST Nessus-6.8.1-es7.x86_64.rpm 30492664 SHA256 a1e36960ad839f682d6b31352d2d7fe3315762e478cc75652f36b05aa5a78671 SHA512 65bcac8a5de2b7f76e6982b7608f44a5c5e4b3e49f13e193536e6ab18b53c78b47b1f39d04f11e3d9f64df7043f80dd660270e5731b974d0ac3229418981823d WHIRLPOOL 84d235b2018823e0631c41114fd0f6f3c87eca6ac5daa55b8c1e5a2b7d9c67855562588e8369330b6f51504f797eb4dd19911181b319dfa4eb45d8a712b25a6c
DIST Nessus-6.9.1-es7.x86_64.rpm 33457320 SHA256 4dc423a332b3fe2cd864808999b759c92c0514a820272c88188907bc945cb146 SHA512 b512daa13aa34c6241ac184898c52984ee22d98dc61a1785d8ff716c0d44537bc9c70d522efdae5c39f7291cb6dd24be4af2eaf139cdafdd4904844335a32fb9 WHIRLPOOL 2a4cb3135be25dc45314cb8884a3cdc15e27c45dd2acec969b6890e6789820afbb670f6627d09090230f296b91b44f166cf71ab2fba4aaf65ebe2fbb9916bb41

View file

@ -76,16 +76,21 @@ src_install() {
}
pkg_postinst() {
elog "You can get started running the following commands:"
elog "/opt/nessus/sbin/nessuscli adduser"
elog "/opt/nessus/sbin/nessuscli mkcert"
elog "/opt/nessus/bin/nessuscli fetch --register <your registration code>"
elog "/etc/init.d/nessusd-bin start"
elog
elog "If you had a previous version of Nessus installed, use"
elog "the following command to update the plugin database:"
elog "/opt/nessus/sbin/nessusd -R"
elog
elog "For more information about nessus, please visit"
elog "${HOMEPAGE}/documentation/"
if [[ -z "${REPLACING_VERSIONS}" ]]; then
elog "You can get started running the following commands:"
elog "/opt/nessus/sbin/nessuscli adduser"
elog "/opt/nessus/sbin/nessuscli mkcert"
elog "/opt/nessus/bin/nessuscli fetch --register <your registration code>"
elog "/etc/init.d/nessusd-bin start"
elog
elog "For more information about nessus, please visit"
elog "${HOMEPAGE}/documentation/"
else
elog "You may want to restart the nessusd-bin service to use"
elog "the new version of Nessus. To do so, run this command:"
elog "/etc/init.d/nessusd-bin restart"
elog "You may also want to run the following command to"
elog "update the plugin database:"
elog "/opt/nessus/sbin/nessusd -R"
fi;
}