From 611bc4d707867b271feb47cf790a4328fff4fded Mon Sep 17 00:00:00 2001 From: MonkWho <31880166+MonkWho@users.noreply.github.com> Date: Wed, 6 May 2020 03:50:58 -0700 Subject: [PATCH] Delete pfatt-5268AC --- bin/pfatt-5268AC | 50 ------------------------------------------------ 1 file changed, 50 deletions(-) delete mode 100644 bin/pfatt-5268AC diff --git a/bin/pfatt-5268AC b/bin/pfatt-5268AC deleted file mode 100644 index 583f7cb..0000000 --- a/bin/pfatt-5268AC +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh - -script_path="/root/bin/pfatt-5268AC.sh" - -name=`/usr/bin/basename "${script_path}"` - -rc_start() { - ### Lock out other start signals until we are done - /usr/bin/touch /var/run/${name}.lck - - ${script_path} & - pid=$! - - if [ $pid ]; then - echo $pid > /var/run/${name}.pid - /usr/bin/logger -p daemon.info -i -t pfattStartup "Successfully started ${name}" - else - /usr/bin/logger -p daemon.error -i -t pfattStartup "Error starting ${name}" - fi - - ### Remove the lock - if [ -f /var/run/${name}.lck ]; then - /bin/sleep 2 - /bin/rm /var/run/${name}.lck - fi -} - -rc_stop() { - if [ -f /var/run/${name}.pid ]; then - kill -9 `cat /var/run/${name}.pid` - /bin/rm /var/run/${name}.pid - fi -} - -case $1 in - start) - if [ ! -f /var/run/${name}.lck ]; then - rc_start - fi - ;; - stop) - rc_stop - ;; - restart) - if [ ! -f /var/run/${name}.lck ]; then - rc_stop - rc_start - fi - ;; -esac