This commit is contained in:
cutemeli
2025-12-22 10:35:30 +00:00
parent 0bfc6c8425
commit 5ce7ca2c5d
38927 changed files with 0 additions and 4594700 deletions

View File

@@ -1,20 +0,0 @@
#!/bin/bash -e
### Copyright 1999-2025. WebPros International GmbH. All rights reserved.
case "$1" in
cleanup)
shift
! /bin/systemctl is-active -q "$@" || /bin/systemctl stop "$@"
! /bin/systemctl is-failed -q "$@" || /bin/systemctl reset-failed "$@"
;;
status|show|stop|kill)
exec /bin/systemctl "$@"
;;
version)
set -o pipefail
/bin/systemctl --version | head -n1 | cut -d' ' -f2
;;
*)
exec /usr/bin/systemd-run "$@"
;;
esac