view backup/stop.sh @ 2026:9c10e37c56f6 default tip

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 29 Oct 2025 21:38:14 -0600
parents 677795f0a4e7
children
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;