master
bel 2023-03-29 19:45:27 -06:00
parent 2bb016751a
commit 522acfdf03
1 changed files with 5 additions and 5 deletions

View File

@ -5,9 +5,9 @@ main() {
_dolphin _dolphin
_stt _stt
_mayhem_party _mayhem_party
while read; do #while read; do
pkill -SIGUSR1 -f mayhem-party # pkill -SIGUSR1 -f mayhem-party
done #done
} }
cleanup() { cleanup() {
@ -54,13 +54,13 @@ _mayhem_party() {
test -f "$GOPATH/bin/mayhem-party" || log "did not install" test -f "$GOPATH/bin/mayhem-party" || log "did not install"
fi fi
log launching mayhem-party log launching mayhem-party
( #(
source ../../config.d/mayhem-party.d/env.env source ../../config.d/mayhem-party.d/env.env
while true; do while true; do
"$HOME"/Go/bin/mayhem-party "$HOME"/Go/bin/mayhem-party
sleep 5 sleep 5
done done
) & #) &
#) &> /tmp/mayhem-party.mayhem-party.log & #) &> /tmp/mayhem-party.mayhem-party.log &
} }