~corey.bryant/openstack-charm-testing/neutron-for-nova

« back to all changes in this revision

Viewing changes to tools/instance_start_all.sh

  • Committer: James Page
  • Date: 2015-04-02 09:16:15 UTC
  • mfrom: (85.1.1 openstack-charm-testing)
  • Revision ID: james.page@canonical.com-20150402091615-04d5eprjplrl2ih1
Rebase

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
echo " + Attempting to start all instances."
 
4
 
 
5
for i in $(nova list | grep SHUT | awk '{ print $2 }');do echo $i; nova start $i; done