diff --git a/core/oputil/oputil_config.js b/core/oputil/oputil_config.js index 2fa7b3a9..66b11fa6 100644 --- a/core/oputil/oputil_config.js +++ b/core/oputil/oputil_config.js @@ -169,7 +169,7 @@ function askNewConfigQuestions(cb) { // we can override/add to it based on user input from this point on... config.general.boardName = answers.boardName; - + return callback(null); }); }, diff --git a/misc/config_template.in.hjson b/misc/config_template.in.hjson index 715c81be..79bc2bbf 100644 --- a/misc/config_template.in.hjson +++ b/misc/config_template.in.hjson @@ -40,9 +40,11 @@ } logging: { + // // By default, the system will rotate logs. // Remember you can pipe logs through bunyan to pretty-print: // > tail -F enigma/logs/enigma-bbs.log | enigma/node_modules/bunyan/bin/bunyan + // rotatingFile: { // If you're having trouble, try setting this to "trace" level: XXXXX @@ -77,6 +79,7 @@ // Archive files and related archives: { + // // External utilities used for import & upload processing archives such // as .zip, .rar, .arj, etc. // @@ -84,6 +87,7 @@ // formats that a BBS may encounter! // // See config.js for additional configuration + // archivers: { // // Each key in the "archivers" configuration block represents a specific @@ -96,4 +100,13 @@ // } } + + users: { + // + // ENiGMA½ utilizes user groups similar to Windows and *nix. Built in groups + // include "users" (for regular users) and "sysops" for +ops. You can add other + // groups to the system as well by adding a 'groups' key in this section: + // groups: [ "leet", "lamerz" ] + // + } } \ No newline at end of file