valet/devstack/unstack-valet-services-stop.sh
Cliff Parsons bac30ca8a7 Valet Devstack Plugin
This commit contains the scripts for the Valet Devstack
plugin. The plugin.sh file is the entry point into the
plugin. These scripts provide the "stack", "unstack" and
"clean" capabilities.

Task: #4591
Story: #2001035

Change-Id: Ib7ec301802bb05969ebc83d060823c0bb8146f53
2017-06-20 16:19:23 -05:00

14 lines
405 B
Bash
Executable File

#!/usr/bin/env bash
echo "Stopping valet-engine process..."
sudo -u valet python /usr/bin/valet-engine -c stop
echo "Stopping Apache2 service..."
sudo service apache2 stop
echo "Stopping Tomcat service..."
sudo service tomcat7 stop
echo "Stopping Zookeeper service..."
sudo service zookeeper stop
echo "Stopping Cassandra service..."
sudo service cassandra stop
echo "Done shutting down Valet services."