You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/scripts/stop-local.sh

14 lines
365 B

#!/bin/bash
echo "Stopping resourcifier..."
RESOURCIFIER=bin/resourcifier
pkill -f $RESOURCIFIER || echo "Resourcifier is not running"
echo "Stopping expandybird..."
EXPANDYBIRD=bin/expandybird
pkill -f $EXPANDYBIRD || echo "Expandybird is not running"
echo "Stopping deployment manager..."
MANAGER=bin/manager
pkill -f $MANAGER || echo "Manager is not running"