fix(core): update

This commit is contained in:
Philipp Kunz 2019-09-04 16:51:58 +02:00
parent 261031a49c
commit 0df90eec5d

View File

@ -4,7 +4,7 @@ import { SmartDaemon } from './smartdaemon.classes.smartdaemon';
export class SmartDaemonSystemdManager { export class SmartDaemonSystemdManager {
// STATIC // STATIC
private static smartDaemonNamespace = 'smartdaemon_'; private static smartDaemonNamespace = 'smartdaemon';
public static createFileNameFromServiceName = (serviceNameArg: string) => { public static createFileNameFromServiceName = (serviceNameArg: string) => {
return `${SmartDaemonSystemdManager.smartDaemonNamespace}_${serviceNameArg}.service`; return `${SmartDaemonSystemdManager.smartDaemonNamespace}_${serviceNameArg}.service`;
}; };