Remove old on_boot scripts

This commit is contained in:
John D 2021-05-25 02:13:19 -07:00
parent e823c08db7
commit dd9f8b5899
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ set -e
case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
# reserved for future use
/sbin/ssh-proxy rm /mnt/data/on_boot.sh
true
;;

View File

@ -16,7 +16,7 @@ set -e
case "$1" in
install|upgrade)
# reserved for future use
/sbin/ssh-proxy rm /mnt/data/on_boot.sh
true
;;

View File

@ -4,7 +4,7 @@ After=network.target
[Service]
Type=oneshot
ExecStart=/sbin/ssh-proxy 'mkdir -p /mnt/data/on_boot.d && find -L /mnt/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=/sbin/ssh-proxy 'mkdir -p /mnt/data/on_boot.d && find -L /mnt/data/on_boot.d -iname "*.sh" -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
[Install]