vagrant/plugins/provisioners/cfengine/config.rb

62 lines
1.8 KiB
Ruby
Raw Normal View History

require "vagrant"
module VagrantPlugins
module CFEngine
class Config < Vagrant.plugin("2", :config)
attr_accessor :deb_repo_file
attr_accessor :deb_repo_line
2013-04-08 20:28:54 +00:00
attr_accessor :force_bootstrap
attr_accessor :install
attr_accessor :mode
2013-04-08 20:46:03 +00:00
attr_accessor :policy_server_address
attr_accessor :repo_gpg_key_url
2013-04-08 20:09:52 +00:00
attr_accessor :yum_repo_file
attr_accessor :yum_repo_url
def initialize
2013-04-08 20:09:52 +00:00
@deb_repo_file = UNSET_VALUE
@deb_repo_line = UNSET_VALUE
2013-04-08 20:28:54 +00:00
@force_bootstrap = UNSET_VALUE
2013-04-08 20:09:52 +00:00
@install = UNSET_VALUE
2013-04-08 20:28:54 +00:00
@mode = UNSET_VALUE
2013-04-08 20:46:03 +00:00
@policy_server_address = UNSET_VALUE
@repo_gpg_key_url = UNSET_VALUE
2013-04-08 20:09:52 +00:00
@yum_repo_file = UNSET_VALUE
@yum_repo_url = UNSET_VALUE
end
def finalize!
if @deb_repo_file == UNSET_VALUE
@deb_repo_file = "/etc/apt/sources.list.d/cfengine-community.list"
end
if @deb_repo_line == UNSET_VALUE
@deb_repo_line = "deb http://cfengine.com/pub/apt $(lsb_release -cs) main"
end
2013-04-08 20:28:54 +00:00
@force_bootstrap = false if @force_bootstrap == UNSET_VALUE
@install = true if @install == UNSET_VALUE
@install = @install.to_sym if @install.respond_to?(:to_sym)
2013-04-08 20:28:54 +00:00
@mode = :bootstrap if @mode == UNSET_VALUE
@mode = @mode.to_sym
2013-04-08 20:46:03 +00:00
@policy_server_address = nil if @policy_server_address == UNSET_VALUE
if @repo_gpg_key_url == UNSET_VALUE
@repo_gpg_key_url = "http://cfengine.com/pub/gpg.key"
end
2013-04-08 20:09:52 +00:00
if @yum_repo_file == UNSET_VALUE
@yum_repo_file = "/etc/yum.repos.d/cfengine-community.repo"
end
if @yum_repo_url == UNSET_VALUE
@yum_repo_url = "http://cfengine.com/pub/yum/"
end
end
end
end
end