Skip to content

Instantly share code, notes, and snippets.

@jimleitch01
Created November 2, 2014 05:38
Show Gist options
  • Save jimleitch01/339592fe03cb800d6247 to your computer and use it in GitHub Desktop.
Save jimleitch01/339592fe03cb800d6247 to your computer and use it in GitHub Desktop.
Stop and start OpenStack services
#!/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