From 0df90eec5dc8aeabadfbdfd016e7d31489ce85f5 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Wed, 4 Sep 2019 16:51:58 +0200 Subject: [PATCH] fix(core): update --- ts/smartdaemon.classes.systemdmanager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/smartdaemon.classes.systemdmanager.ts b/ts/smartdaemon.classes.systemdmanager.ts index 2c515b2..3175853 100644 --- a/ts/smartdaemon.classes.systemdmanager.ts +++ b/ts/smartdaemon.classes.systemdmanager.ts @@ -4,7 +4,7 @@ import { SmartDaemon } from './smartdaemon.classes.smartdaemon'; export class SmartDaemonSystemdManager { // STATIC - private static smartDaemonNamespace = 'smartdaemon_'; + private static smartDaemonNamespace = 'smartdaemon'; public static createFileNameFromServiceName = (serviceNameArg: string) => { return `${SmartDaemonSystemdManager.smartDaemonNamespace}_${serviceNameArg}.service`; };