Skip to content

Commit

Permalink
Initialize the install_command salt config var
Browse files Browse the repository at this point in the history
  • Loading branch information
wkral committed Jul 11, 2015
1 parent 7743b83 commit ccd7354
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions plugins/provisioners/salt/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class Config < Vagrant.plugin("2", :config)
attr_accessor :install_args
attr_accessor :install_master
attr_accessor :install_syndic
attr_accessor :install_command
attr_accessor :no_minion
attr_accessor :bootstrap_options
attr_accessor :version
Expand All @@ -59,6 +60,7 @@ def initialize
@install_args = UNSET_VALUE
@install_master = UNSET_VALUE
@install_syndic = UNSET_VALUE
@install_command = UNSET_VALUE
@no_minion = UNSET_VALUE
@bootstrap_options = UNSET_VALUE
@config_dir = UNSET_VALUE
Expand Down Expand Up @@ -89,6 +91,7 @@ def finalize!
@install_args = nil if @install_args == UNSET_VALUE
@install_master = nil if @install_master == UNSET_VALUE
@install_syndic = nil if @install_syndic == UNSET_VALUE
@install_command = nil if @install_command == UNSET_VALUE
@no_minion = nil if @no_minion == UNSET_VALUE
@bootstrap_options = nil if @bootstrap_options == UNSET_VALUE
@config_dir = nil if @config_dir == UNSET_VALUE
Expand Down

0 comments on commit ccd7354

Please sign in to comment.