summaryrefslogtreecommitdiff
path: root/scripts/vyatta-monitor-background-stop
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/vyatta-monitor-background-stop')
-rwxr-xr-xscripts/vyatta-monitor-background-stop13
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/vyatta-monitor-background-stop b/scripts/vyatta-monitor-background-stop
deleted file mode 100755
index c10528f..0000000
--- a/scripts/vyatta-monitor-background-stop
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-declare pidname="$1"
-pidfile="/var/run/vyatta/monitor/$pidname-`tty| sed -e s-/--g -e s/dev//g`.pid"
-if [ -f $pidfile ]; then
- pid=$(cat $pidfile)
- processname=$(cat /proc/$pid/cmdline 2>/dev/null)
- if [[ $processname =~ "tail" ]];then
- kill -9 $pid
- rm -f $pidfile
- exit 0
- fi
-fi
-echo -ne "\n You are not currently monitoring this service\n\n"