Commit 59d7fd81 authored by Leo Iannacone's avatar Leo Iannacone

Merge branch 'master' into feature/commands_page

parents b75411c6 e9bdc5f6
# 0.4.2 (2014-06-15)
* [fix] calculate pidfile for debomatic status check after merging configurations
# 0.4.1 (2014-06-13)
* [fix] preview file using a fixed max-height on new content
* [fix] show and hide correctly debomatic status when build packages
......
......@@ -68,13 +68,7 @@ config.web.preferences.debug = 0; // debug level - 0 means disabled
// DO NOT TOUCH these ones
config.version = '0.4.1';
config.debomatic.pidfile = "/var/run/debomatic-" +
require('crypto')
.createHash('sha256')
.update(config.debomatic.path)
.digest('hex');
config.version = '0.4.2';
config.events = {};
config.events.error = 'error';
......@@ -143,5 +137,13 @@ try {
config.web.events = config.events;
config.web.status = config.status;
config.web.host = config.host;
// calculate pidfile
config.debomatic.pidfile = "/var/run/debomatic-" +
require('crypto')
.createHash('sha256')
.update(config.debomatic.path)
.digest('hex');
module.exports = config;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment