Class: VagrantPlugins::PersistentStorage::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-persistent-storage/config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/vagrant-persistent-storage/config.rb', line 30

def initialize
  @size = UNSET_VALUE
  @create = true
  @mount = true
  @manage = true
  @format = true
  @use_lvm = true
  @enabled = false
  @location = UNSET_VALUE
  @mountname = UNSET_VALUE
  @mountpoint = UNSET_VALUE
  @mountoptions = UNSET_VALUE
  @diskdevice = UNSET_VALUE
  @filesystem = UNSET_VALUE
  @volgroupname = UNSET_VALUE
		@drive_letter = UNSET_VALUE
end

Instance Attribute Details

#createObject Also known as: create?

Returns the value of attribute create.



8
9
10
# File 'lib/vagrant-persistent-storage/config.rb', line 8

def create
  @create
end

#diskdeviceObject

Returns the value of attribute diskdevice.



18
19
20
# File 'lib/vagrant-persistent-storage/config.rb', line 18

def diskdevice
  @diskdevice
end

#drive_letterObject

Returns the value of attribute drive_letter.



21
22
23
# File 'lib/vagrant-persistent-storage/config.rb', line 21

def drive_letter
  @drive_letter
end

#enabledObject Also known as: enabled?

Returns the value of attribute enabled.



12
13
14
# File 'lib/vagrant-persistent-storage/config.rb', line 12

def enabled
  @enabled
end

#filesystemObject

Returns the value of attribute filesystem.



19
20
21
# File 'lib/vagrant-persistent-storage/config.rb', line 19

def filesystem
  @filesystem
end

#formatObject Also known as: format?

Returns the value of attribute format.



11
12
13
# File 'lib/vagrant-persistent-storage/config.rb', line 11

def format
  @format
end

#locationObject

Returns the value of attribute location.



14
15
16
# File 'lib/vagrant-persistent-storage/config.rb', line 14

def location
  @location
end

#manageObject Also known as: manage?

Returns the value of attribute manage.



10
11
12
# File 'lib/vagrant-persistent-storage/config.rb', line 10

def manage
  @manage
end

#mountObject Also known as: mount?

Returns the value of attribute mount.



9
10
11
# File 'lib/vagrant-persistent-storage/config.rb', line 9

def mount
  @mount
end

#mountnameObject

Returns the value of attribute mountname.



15
16
17
# File 'lib/vagrant-persistent-storage/config.rb', line 15

def mountname
  @mountname
end

#mountoptionsObject

Returns the value of attribute mountoptions.



17
18
19
# File 'lib/vagrant-persistent-storage/config.rb', line 17

def mountoptions
  @mountoptions
end

#mountpointObject

Returns the value of attribute mountpoint.



16
17
18
# File 'lib/vagrant-persistent-storage/config.rb', line 16

def mountpoint
  @mountpoint
end

#sizeObject

Returns the value of attribute size.



7
8
9
# File 'lib/vagrant-persistent-storage/config.rb', line 7

def size
  @size
end

#use_lvmObject Also known as: use_lvm?

Returns the value of attribute use_lvm.



13
14
15
# File 'lib/vagrant-persistent-storage/config.rb', line 13

def use_lvm
  @use_lvm
end

#volgroupnameObject

Returns the value of attribute volgroupname.



20
21
22
# File 'lib/vagrant-persistent-storage/config.rb', line 20

def volgroupname
  @volgroupname
end

Instance Method Details

#finalize!Object



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/vagrant-persistent-storage/config.rb', line 48

def finalize!
  @size = 0 if @size == UNSET_VALUE
  @create = true if @create == UNSET_VALUE
  @mount = true if @mount == UNSET_VALUE
  @manage = true if @manage == UNSET_VALUE
  @format = true if @format == UNSET_VALUE
  @use_lvm = true if @use_lvm == UNSET_VALUE
  @enabled = false if @enabled == UNSET_VALUE
  @location = 0 if @location == UNSET_VALUE
  @mountname = 0 if @mountname == UNSET_VALUE
  @mountpoint = 0 if @mountpoint == UNSET_VALUE
  @mountoptions = 0 if @mountoptions == UNSET_VALUE
  @diskdevice = 0 if @diskdevice == UNSET_VALUE
  @filesystem = 0 if @filesystem == UNSET_VALUE
  @volgroupname = 0 if @volgroupname == UNSET_VALUE
		@drive_letter = 0 if @drive_letter == UNSET_VALUE
end

#validate(machine) ⇒ Object



66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'lib/vagrant-persistent-storage/config.rb', line 66

def validate(machine)
  errors = []

  errors << validate_bool('persistent_storage.create', @create)
  errors << validate_bool('persistent_storage.mount', @mount)
  errors << validate_bool('persistent_storage.mount', @manage)
  errors << validate_bool('persistent_storage.mount', @format)
  errors << validate_bool('persistent_storage.mount', @use_lvm)
  errors << validate_bool('persistent_storage.mount', @enabled)
  errors.compact!

  if !machine.config.persistent_storage.size.kind_of?(String)
    errors << I18n.t('vagrant_persistent_storage.config.not_a_string', {
      :config_key => 'persistent_storage.size',
      :is_class   => size.class.to_s,
    })
  end
  if !machine.config.persistent_storage.location.kind_of?(String)
    errors << I18n.t('vagrant_persistent_storage.config.not_a_string', {
      :config_key => 'persistent_storage.location',
      :is_class   => location.class.to_s,
    })
  end
  if !machine.config.persistent_storage.mountname.kind_of?(String)
    errors << I18n.t('vagrant_persistent_storage.config.not_a_string', {
      :config_key => 'persistent_storage.mountname',
      :is_class   => mountname.class.to_s,
    })
  end
  if !machine.config.persistent_storage.mountpoint.kind_of?(String)
    errors << I18n.t('vagrant_persistent_storage.config.not_a_string', {
      :config_key => 'persistent_storage.mountpoint',
      :is_class   => mountpoint.class.to_s,
    })
  end
  if !machine.config.persistent_storage.diskdevice.kind_of?(String)
    errors << I18n.t('vagrant_persistent_storage.config.not_a_string', {
      :config_key => 'persistent_storage.diskdevice',
      :is_class   => diskdevice.class.to_s,
    })
  end
  if !machine.config.persistent_storage.filesystem.kind_of?(String)
    errors << I18n.t('vagrant_persistent_storage.config.not_a_string', {
      :config_key => 'persistent_storage.filesystem',
      :is_class   => filesystem.class.to_s,
    })
  end
  if !machine.config.persistent_storage.volgroupname.kind_of?(String)
    errors << I18n.t('vagrant_persistent_storage.config.not_a_string', {
      :config_key => 'persistent_storage.volgroupname',
      :is_class   => volgroupname.class.to_s,
    })
  end

  mount_point_path = Pathname.new("#{machine.config.persistent_storage.location}")
  if ! mount_point_path.absolute?
    errors << I18n.t('vagrant_persistent_storage.config.not_a_path', {
      :config_key => 'persistent_storage.location',
      :is_path   => location.class.to_s,
    })
  end

  { 'Persistent Storage configuration' => errors }

  if ! File.exists?@location.to_s and ! @create == "true"
      return { "location" => ["file doesn't exist, and create set to false"] }
  end
  {}
end