view backup/stop.sh @ 2027:8c5b604f98cd

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 30 Oct 2025 18:59:53 -0600
parents 9c10e37c56f6
children ee75b5c12272
line wrap: on
line source

#!/bin/bash

LUAN_PIDS=$(ps ax | awk '{if($0~"(backup_)?[s]erver.luan"){print $1}}');
kill -TERM $LUAN_PIDS;
exit 0;