diff backup/stop.sh @ 1693:45eaaf5146f3

add backup autostart
author Vadim Filimonov <fffilimonov@yandex.ru>
date Mon, 20 Jun 2022 10:29:43 +0300
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/backup/stop.sh	Mon Jun 20 10:29:43 2022 +0300
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+LUAN_PIDS=$(ps ax | awk '{if($0~"[s]erver.luan"){print $1}}');
+kill -TERM $LUAN_PIDS;
+exit 0;