From 0814f38e5985651c57e7b6b0d3908bae19a19df8 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Thu, 7 Sep 2023 20:40:41 +0100 Subject: T671: remove scripts that are either unused or about to be replaced (cherry picked from commit 2f92b8bbb1b1042ff14918af3495c86f8b0c7870) --- scripts/vyatta-monitor-background-stop | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 scripts/vyatta-monitor-background-stop (limited to 'scripts/vyatta-monitor-background-stop') 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" -- cgit v1.2.3