From 62919894b49623f3712f793b7b04a480ab0d28c2 Mon Sep 17 00:00:00 2001 From: Baris Soner Usakli Date: Tue, 16 Jul 2013 16:33:18 -0400 Subject: [PATCH] removed the bcrypt question from install, changed default to 12 --- src/install.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/install.js b/src/install.js index 24709cb5ab..de7cb1e164 100644 --- a/src/install.js +++ b/src/install.js @@ -11,8 +11,7 @@ var async = require('async'), 'redis:host|Host IP or address of your Redis instance? (127.0.0.1)', 'redis:port|Host port of your Redis instance? (6379)', 'redis:password|Password of your Redis database? (no password)', - 'secret|Your NodeBB secret? (keyboard mash for a bit here)', - 'bcrypt_rounds|The number of rounds to use for bcrypt.genSalt? (10)' + 'secret|Your NodeBB secret? (keyboard mash for a bit here)' ], defaults: { "base_url": 'http://localhost', @@ -22,7 +21,7 @@ var async = require('async'), "redis:port": 6379, "redis:password": '', "secret": utils.generateUUID(), - "bcrypt_rounds": 10, + "bcrypt_rounds": 12, "upload_path": '/public/uploads' }, ask: function(question, callback) {