update prestart with script

This commit is contained in:
Joseph Hanson 2024-11-23 09:02:56 -06:00
parent 79cbd4b1a8
commit 2a2bb52729
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -1,6 +1,7 @@
{ {
lib, lib,
config, config,
pkgs,
... ...
}: }:
with lib; with lib;
@ -33,14 +34,14 @@ in
after = [ "network.target" ]; after = [ "network.target" ];
serviceConfig = { serviceConfig = {
ExecStartPre = '' ExecStartPre = "${pkgs.writeShellScript "scrypted-start-pre" ''
set -o errexit set -o errexit
set -o nounset set -o nounset
set -o pipefail set -o pipefail
podman rm -f ${app} || true podman rm -f ${app} || true
rm -f /run/${app}.ctr-id rm -f /run/${app}.ctr-id
''; ''}";
ExecStart = '' ExecStart = ''
${pkgs.podman}/bin/podman run \ ${pkgs.podman}/bin/podman run \
--rm \ --rm \
@ -66,12 +67,12 @@ in
Type = "simple"; Type = "simple";
Restart = "always"; Restart = "always";
}; };
};
networking.firewall = mkIf cfg.openFirewall { networking.firewall = mkIf cfg.openFirewall {
allowedTCPPorts = [ allowedTCPPorts = [
32400 # Primary Plex port 32400 # Primary Plex port
]; ];
};
}; };
# TODO add nginx proxy # TODO add nginx proxy