From af96f615c74f87208c6511dc281856a04118422a Mon Sep 17 00:00:00 2001 From: jvyden Date: Sun, 15 May 2022 22:09:57 -0400 Subject: [PATCH] [skip ci] Fix invalid exec format for systemd services --- scripts-and-tools/project-lighthouse-api.service | 2 +- scripts-and-tools/project-lighthouse-gameserver.service | 2 +- scripts-and-tools/project-lighthouse-website.service | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts-and-tools/project-lighthouse-api.service b/scripts-and-tools/project-lighthouse-api.service index b2b73a49..30ca1766 100644 --- a/scripts-and-tools/project-lighthouse-api.service +++ b/scripts-and-tools/project-lighthouse-api.service @@ -4,7 +4,7 @@ Documentation=https://github.com/LBPUnion/ProjectLighthouse [Service] Type=simple -ExecStart=/srv/lighthouse/start.sh API +ExecStart=bash -c "/srv/lighthouse/start.sh API" TimeoutStopSec=15 User=lighthouse diff --git a/scripts-and-tools/project-lighthouse-gameserver.service b/scripts-and-tools/project-lighthouse-gameserver.service index 8729c991..3a065355 100644 --- a/scripts-and-tools/project-lighthouse-gameserver.service +++ b/scripts-and-tools/project-lighthouse-gameserver.service @@ -4,7 +4,7 @@ Documentation=https://github.com/LBPUnion/ProjectLighthouse [Service] Type=simple -ExecStart=/srv/lighthouse/start.sh GameServer +ExecStart=bash -c "/srv/lighthouse/start.sh GameServer" TimeoutStopSec=15 User=lighthouse diff --git a/scripts-and-tools/project-lighthouse-website.service b/scripts-and-tools/project-lighthouse-website.service index d2c5d5c1..f4bb1a87 100644 --- a/scripts-and-tools/project-lighthouse-website.service +++ b/scripts-and-tools/project-lighthouse-website.service @@ -4,7 +4,7 @@ Documentation=https://github.com/LBPUnion/ProjectLighthouse [Service] Type=simple -ExecStart=/srv/lighthouse/start.sh Website +ExecStart=bash -c "/srv/lighthouse/start.sh Website" TimeoutStopSec=15 User=lighthouse