From 37e4c66a1c4e3560685b29d52218db6090cfe1dc Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Sat, 20 Aug 2016 12:44:40 +0200 Subject: PID files auslesen --- shutdownasap.in | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'shutdownasap.in') diff --git a/shutdownasap.in b/shutdownasap.in index 378e70c..aef43c4 100755 --- a/shutdownasap.in +++ b/shutdownasap.in @@ -42,15 +42,24 @@ do fi done - for s in "${!shutDownNoGos[@]}" + for s in "${!shutDownNoGoProcesses[@]}" do - if [ -e "${shutDownNoGos[${s}]}" ] || echo "${prozesse}" | grep -q "\(\s\|/\)${shutDownNoGos[${s}]}\(\$\|\s\)" + if echo "${prozesse}" | grep -q "\(\s\|/\)${shutDownNoGoProcesses[${s}]}\(\$\|\s\)" then nochwarten=true echo "prozess: ${s}" fi done + for s in "${!shutDownNoGoFiles[@]}" + do + if [ -e "${shutDownNoGoFiles[${s}]}" ] && echo "${prozesse}" | grep -q "^\S\+\s\+$(cat "${shutDownNoGoFiles[${s}]}")\s" + then + nochwarten=true + echo "datei: ${s}" + fi + done + if ${nochwarten} then echo "warten ..." -- cgit v1.2.3-54-g00ecf