From b9174895a50f69d62b6b981428b680cf53a89f66 Mon Sep 17 00:00:00 2001 From: Gilles Cornu Date: Sun, 23 Oct 2016 20:46:30 +0200 Subject: [PATCH] provisioners/ansible (minor): Fix alphabetical order of base attributes This point was missed in #6627. --- plugins/provisioners/ansible/config/base.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/provisioners/ansible/config/base.rb b/plugins/provisioners/ansible/config/base.rb index 6b9e73a40..ae643591f 100644 --- a/plugins/provisioners/ansible/config/base.rb +++ b/plugins/provisioners/ansible/config/base.rb @@ -10,8 +10,8 @@ module VagrantPlugins attr_accessor :galaxy_role_file attr_accessor :galaxy_roles_path attr_accessor :galaxy_command - attr_accessor :host_vars attr_accessor :groups + attr_accessor :host_vars attr_accessor :inventory_path attr_accessor :limit attr_accessor :playbook @@ -30,8 +30,8 @@ module VagrantPlugins @galaxy_role_file = UNSET_VALUE @galaxy_roles_path = UNSET_VALUE @galaxy_command = UNSET_VALUE - @host_vars = UNSET_VALUE @groups = UNSET_VALUE + @host_vars = UNSET_VALUE @inventory_path = UNSET_VALUE @limit = UNSET_VALUE @playbook = UNSET_VALUE @@ -51,8 +51,8 @@ module VagrantPlugins @galaxy_role_file = nil if @galaxy_role_file == UNSET_VALUE @galaxy_roles_path = nil if @galaxy_roles_path == UNSET_VALUE @galaxy_command = GALAXY_COMMAND_DEFAULT if @galaxy_command == UNSET_VALUE - @host_vars = {} if @host_vars == UNSET_VALUE @groups = {} if @groups == UNSET_VALUE + @host_vars = {} if @host_vars == UNSET_VALUE @inventory_path = nil if @inventory_path == UNSET_VALUE @limit = nil if @limit == UNSET_VALUE @playbook = nil if @playbook == UNSET_VALUE