1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-28 22:23:17 +00:00

Fixed typo, causing bug where service.conf wasn't committed when systemd tried to enable the service, resulting in the service not being configured to AUTO_START, when AUTO_START is specified.

This commit is contained in:
Bryan Roe
2019-08-09 01:22:37 -07:00
parent 9ae4eef5b7
commit b3accf17c1
2 changed files with 16 additions and 16 deletions

View File

@@ -1541,18 +1541,18 @@ function serviceManager()
case 'AUTO_START':
conf.write('[Install]\n');
conf.write('WantedBy=multi-user.target\n');
conf.write('Alias=' + options.name + '.service\n'); break;
this._update = require('child_process').execFile('/bin/sh', ['sh'], { type: require('child_process').SpawnTypes.TERM });
conf.write('Alias=' + options.name + '.service\n');
conf.end();
this._update = require('child_process').execFile('/bin/sh', ['sh']);
this._update._moduleName = options.name;
this._update.stdout.on('data', function (chunk) { });
this._update.stdin.write('systemctl enable ' + options.name + '.service\n');
this._update.stdin.write('exit\n');
this._update.waitExit();
default:
conf.end();
break;
}
conf.end();
break;
default: // unknown platform service type
console.log('Unknown Service Platform Type: ' + options.servicePlatform);