Created
November 2, 2014 05:38
-
-
Save jimleitch01/339592fe03cb800d6247 to your computer and use it in GitHub Desktop.
Stop and start OpenStack services
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Stop and start OpenStack services | |
for service in `ls -1 /etc/init.d/openstack-*` | |
do | |
$service $1 | |
done | |
for service in `ls -1 /etc/init.d/neutron-*` | |
do | |
$service $1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment