From 16bb69fa25b3c2ee4adf5c2b03fedeed930a219a Mon Sep 17 00:00:00 2001 From: Unitech Date: Wed, 6 Dec 2017 20:09:13 +0100 Subject: [PATCH] startup: systemd disable chmod --- lib/API/Startup.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/API/Startup.js b/lib/API/Startup.js index 0639f336..f4dc47dd 100644 --- a/lib/API/Startup.js +++ b/lib/API/Startup.js @@ -220,7 +220,6 @@ module.exports = function(CLI) { template = getTemplate('systemd'); destination = '/etc/systemd/system/' + service_name + '.service'; commands = [ - 'chmod +x ' + destination, 'systemctl enable ' + service_name, 'systemctl start ' + service_name, 'systemctl daemon-reload',