From 8e7522b1b14797d1a544d656166ef79ddb243f32 Mon Sep 17 00:00:00 2001 From: Brendan Coles Date: Sun, 3 Mar 2019 20:38:04 +0000 Subject: [PATCH] Add next steps to installer --- install | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/install b/install index c9dd3c3d3..f35cf7bb2 100755 --- a/install +++ b/install @@ -207,14 +207,23 @@ install_beef () { else bundle install --without test development fi +} +finish () { echo - echo "==========================================" + echo "#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#" echo info "Install completed successfully!" info "Run './beef' to launch BeEF" echo - echo "==========================================" + echo "Next steps:" + echo + echo "* Change the default password in config.yaml" + echo "* Run ./update-geoipdb to install the Maxmind GeoIP database" + echo "* Review the wiki for important configuration information:" + echo " https://github.com/beefproject/beef/wiki/Configuration" + echo + echo "#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#" echo } @@ -239,6 +248,7 @@ main () { check_rubygems check_bundler install_beef + finish } main "$@"