# # The Leapfile is the bootstrap configuration file for a LEAP provider. # # It is akin to a Gemfile, Rakefile, or Capfile (e.g. it is a ruby file that gets eval'ed) # module LeapCli def self.leapfile @leapfile ||= Leapfile.new end class Leapfile attr_accessor :platform_directory_path attr_accessor :provider_directory_path attr_accessor :custom_vagrant_vm_line attr_accessor :leap_version attr_accessor :log attr_accessor :vagrant_network def initialize @vagrant_network = '10.5.5.0/24' end def load directory = File.expand_path(find_in_directory_tree('Leapfile')) if directory == '/' return nil else self.provider_directory_path = directory read_settings(directory + '/Leapfile') read_settings(ENV['HOME'] + '/.leaprc') self.platform_directory_path = File.expand_path(self.platform_directory_path || '../leap_platform', self.provider_directory_path) return true end end private def read_settings(file) if File.exists? file Util::log 2, :read, file instance_eval(File.read(file), file) validate(file) end end def find_in_directory_tree(filename) search_dir = Dir.pwd while search_dir != "/" Dir.foreach(search_dir) do |f| return search_dir if f == filename end search_dir = File.dirname(search_dir) end return search_dir end PRIVATE_IP_RANGES = /(^127\.0\.0\.1)|(^10\.)|(^172\.1[6-9]\.)|(^172\.2[0-9]\.)|(^172\.3[0-1]\.)|(^192\.168\.)/ def validate(file) Util::assert! vagrant_network =~ PRIVATE_IP_RANGES do Util::log 0, :error, "in #{file}: vagrant_network is not a local private network" end end end end