fix(labca): enable standalone mode for embedded templates

This commit is contained in:
MickLesk
2026-04-02 22:24:25 +02:00
parent 486eb90163
commit d351fb2968

View File

@@ -16,6 +16,11 @@ update_os
fetch_and_deploy_gh_release "labca-gui" "hakwerk/labca" "binary" fetch_and_deploy_gh_release "labca-gui" "hakwerk/labca" "binary"
mkdir -p /etc/labca mkdir -p /etc/labca
cat <<EOF >/etc/labca/config.json
{
"standalone": true
}
EOF
msg_info "Creating Service" msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/labca.service cat <<EOF >/etc/systemd/system/labca.service
@@ -28,8 +33,7 @@ StartLimitBurst=3
[Service] [Service]
Type=simple Type=simple
WorkingDirectory=/etc/labca ExecStart=/usr/bin/labca-gui --init -config /etc/labca/config.json -port 3000
ExecStart=/usr/bin/labca-gui -config /etc/labca/config.json -port 3000
Restart=on-failure Restart=on-failure
RestartSec=5 RestartSec=5