Adds hostname support, fixes #343

Works from previous testing but I haven't tried this personal revision
of the code. Take it with a grain of salt.
This commit is contained in:
Quinton Marchi
2013-09-28 03:55:06 -04:00
parent 607ee8bbc1
commit 571259f241
2 changed files with 12 additions and 2 deletions

View File

@@ -40,7 +40,17 @@ var async = require('async'),
}, {
name: 'redis:password',
description: 'Password of your Redis database'
}],
}, {
name: 'use_ip',
description: 'Do you want to bind to an IP or hostname?',
'default': 'n',
pattern: /y[es]*|n[o]?/,
message: 'Please enter \'yes\' or \'no\'',
}, {
name: 'hostname_ip',
decription: 'Hostname or IP to bind to'
'default': '0.0.0.0'
}],
setup: function (callback) {
async.series([
function (next) {