![Cliff Parsons](/assets/img/avatar_default.png)
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
14 lines
405 B
Bash
Executable File
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."
|