| 1 | #!/bin/sh
|
|---|
| 2 |
|
|---|
| 3 | # Copyright 2012 Georg-August-Universität Göttingen, Germany
|
|---|
| 4 | #
|
|---|
| 5 | # Licensed under the Apache License, Version 2.0 (the "License");
|
|---|
| 6 | # you may not use this file except in compliance with the License.
|
|---|
| 7 | # You may obtain a copy of the License at
|
|---|
| 8 | #
|
|---|
| 9 | # http://www.apache.org/licenses/LICENSE-2.0
|
|---|
| 10 | #
|
|---|
| 11 | # Unless required by applicable law or agreed to in writing, software
|
|---|
| 12 | # distributed under the License is distributed on an "AS IS" BASIS,
|
|---|
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|---|
| 14 | # See the License for the specific language governing permissions and
|
|---|
| 15 | # limitations under the License.
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 | # This script stops the autoquest-htmlmonitor which is in the same folder as
|
|---|
| 20 | # this script
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 | # Absolute path to this script, e.g. /home/user/bin/stop.sh
|
|---|
| 24 | SCRIPT=$(readlink -f $0)
|
|---|
| 25 |
|
|---|
| 26 | # Find the autoquest-htmlmonitor JAR-File and start in the Folder of this Script
|
|---|
| 27 | JAR_FILE=`find $(dirname $SCRIPT) -type f -name 'autoquest-htmlmonitor-*.jar'`
|
|---|
| 28 |
|
|---|
| 29 | # Get the ProcessID of the autoquest-htmlmonitor which is in the same folder as this script
|
|---|
| 30 | PID=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | awk '{print $1}')
|
|---|
| 31 |
|
|---|
| 32 | if [ -z "$PID" ]; then
|
|---|
| 33 | echo autoquest-htmlmonitor is not running
|
|---|
| 34 | else
|
|---|
| 35 | #Kill this autoquest-htmlmonitor-process
|
|---|
| 36 | kill "$PID"
|
|---|
| 37 | # Check if Process is no more
|
|---|
| 38 | CHECK=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | awk '{print $1}')
|
|---|
| 39 | if [ ! -z "$CHECK" ]; then
|
|---|
| 40 | kill -9 "$CHECK"
|
|---|
| 41 | fi
|
|---|
| 42 | echo autoquest-htmlmonitor stopped
|
|---|
| 43 | fi
|
|---|
| 44 |
|
|---|