diff --git a/crmsh/ui_cluster.py b/crmsh/ui_cluster.py index 72c584ed1f..dd6fb16e01 100644 --- a/crmsh/ui_cluster.py +++ b/crmsh/ui_cluster.py @@ -96,6 +96,8 @@ def _parse_option_for_nodes(self, action_type, context, *args): if options.all and args: context.fatal_error("Should either use --all or specific node") member_list = utils.list_cluster_nodes() + if options.all: + utils.cluster_run_cmd("crm cluster start") for node in args: if node not in member_list: context.fatal_error("Node \"{}\" is not a cluster node".format(node))