diff --git a/horizon/horizon/dashboards/nova/instances_and_volumes/instances/tables.py b/horizon/horizon/dashboards/nova/instances_and_volumes/instances/tables.py index 16335ac3f..237eadf7f 100644 --- a/horizon/horizon/dashboards/nova/instances_and_volumes/instances/tables.py +++ b/horizon/horizon/dashboards/nova/instances_and_volumes/instances/tables.py @@ -70,7 +70,7 @@ class RebootInstance(tables.BatchAction): classes = ('btn-danger',) def allowed(self, request, instance=None): - return instance.status in ACTIVE_STATES + return instance.status in ACTIVE_STATES or instance.status == 'SHUTOFF' def action(self, request, obj_id): api.server_reboot(request, obj_id)