This commit is contained in:
John Dorman 2023-02-21 21:13:46 -08:00
parent 6c3fcfa178
commit 6db3bb1d9e
4 changed files with 4 additions and 1 deletions

View File

@ -3,3 +3,6 @@
%: %:
dh $@ dh $@
override_dh_builddeb:
dh_builddeb -- -Zgzip

View File

@ -8,7 +8,7 @@ StartLimitBurst=5
[Service] [Service]
Restart=on-failure Restart=on-failure
RestartSec=5s RestartSec=5s
ExecStart=bash - c 'mkdir -p /data/on_boot.d && find -L /data/on_boot.d -mindepth 1 -maxdepth 1 -type f -print0 | sort -z | xargs -0 -r -n 1 -- sh -c '\''if test -x "$0"; then echo "%n: running $0"; "$0"; else case "$0" in *.sh) echo "%n: sourcing $0"; . "$0";; *) echo "%n: ignoring $0";; esac; fi'\' ExecStart=bash -c 'mkdir -p /data/on_boot.d && find -L /data/on_boot.d -mindepth 1 -maxdepth 1 -type f -print0 | sort -z | xargs -0 -r -n 1 -- sh -c '\''if test -x "$0"; then echo "%n: running $0"; "$0"; else case "$0" in *.sh) echo "%n: sourcing $0"; . "$0";; *) echo "%n: ignoring $0";; esac; fi'\'
RemainAfterExit=true RemainAfterExit=true
[Install] [Install]