diff options
author | H. P. <harald.p.@xmart.de> | 2018-07-05 21:04:33 +0200 |
---|---|---|
committer | H. P. <harald.p.@xmart.de> | 2018-07-05 21:04:33 +0200 |
commit | 6b9fea0f6966b4816fe5016493666d3e53fea08d (patch) | |
tree | c6af4dd57d06f58d7339c8e9df97e154eee9ecc2 /usr/local/bin/freshclam-die | |
parent | 9718a84ffb3304324e058bd249217dcd56a209e4 (diff) | |
download | systemd-units-6b9fea0f6966b4816fe5016493666d3e53fea08d.tar.bz2 |
Unification of scripts, move to sbin
Diffstat (limited to 'usr/local/bin/freshclam-die')
-rwxr-xr-x | usr/local/bin/freshclam-die | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/usr/local/bin/freshclam-die b/usr/local/bin/freshclam-die deleted file mode 100755 index 0cd3e4b..0000000 --- a/usr/local/bin/freshclam-die +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -FCPIDF="/run/freshclam/freshclam.pid" - -[ ! -e "$FCPIDF" ]&&exit 1 -FCPID="$(cat "$FCPIDF")" -[ -z "$FCPID" ]&&exit 2 -ps -p "$FCPID" >/dev/null 2>&1 -[ "$?" -ne 0 ]&&exit 3 -kill "$FCPID" >/dev/null 2>&1 -sleep 1 -ps -p "$FCPID" >/dev/null 2>&1||exit 0 -sleep 10 -kill -9 "$FCPID" >/dev/null 2>&1 -sleep 2 -ps -p "$FCPID" >/dev/null 2>&1&&exit 4||exit 0 |