Fix instructions for creating the initial user - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
(DIR) commit de71661a4e21d584db522776b884fa7f21a35e0b
(DIR) parent 96b9cd5f39e04dd5e79b1c7854d970af73e56ad9
(HTM) Author: HD Moore <x@hdm.io>
Date: Mon, 7 Mar 2016 13:47:39 -0600
Fix instructions for creating the initial user
Diffstat:
M bin/verify_install.rb | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
---
(DIR) diff --git a/bin/verify_install.rb b/bin/verify_install.rb
@@ -66,9 +66,9 @@ puts "[*]"
puts "[*] 2. Install postgresql community contributed modules:"
puts "[*] $ sudo apt-get install postgresql-contrib"
puts "[*]"
-puts "[*] 3. Configure a user account, password, and database for WarVOX:"
+puts "[*] 3. Configure a superuser account, password, and database for WarVOX:"
puts "[*] $ sudo su - postgres"
-puts "[*] $ createuser warvox"
+puts "[*] $ createuser -s warvox"
puts "[*] $ createdb warvox -O warvox"
puts "[*] $ psql"
puts "[*] psql> alter user warvox with password 'randompass';"
@@ -78,11 +78,12 @@ puts "[*] 4. Copy config/database.yml.example to config/database.yml"
puts "[*]"
puts "[*] 5. Modify config/database.yml to include the password above"
puts "[*]"
-puts "[*] 6. Modify config/warvox.conf and set a UI password"
-puts "[*]"
-puts "[*] 7. Initialize the WarVOX database"
+puts "[*] 6. Initialize the WarVOX database"
puts "[*] $ make database"
puts "[*]"
+puts "[*] 7. Create a user account"
+puts "[*] $ bin/adduser"
+puts "[*]"
puts "[*] 8. Start WarVOX with bin/warvox.rb"
puts "[*]"
puts "[*] 9. Login to http://127.0.0.1:7777/"