Class: Chef::Provider::Mount::Mount

Inherits:
Chef::Provider::Mount show all
Defined in:
lib/chef/provider/mount/mount.rb

Direct Known Subclasses

Aix

Instance Attribute Summary collapse

Attributes inherited from Chef::Provider::Mount

#unmount_retries

Attributes inherited from Chef::Provider

#action, #current_resource, #logger, #new_resource, #recipe_name, #run_context

Instance Method Summary collapse

Methods inherited from Chef::Provider::Mount

#action_disable, #action_enable, #action_mount, #action_remount, #action_umount, #device_unchanged?

Methods included from Mixin::ShellOut

apply_default_env, maybe_add_timeout, #shell_out, #shell_out!

Methods inherited from Chef::Provider

action, #action_nothing, #check_resource_semantics!, #cleanup_after_converge, #compile_and_converge_action, #converge_by, #converge_if_changed, #cookbook_name, #define_resource_requirements, #description, #events, include_resource_dsl?, include_resource_dsl_module, #introduced, #node, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, use_inline_resources, #whyrun_mode?, #whyrun_supported?

Methods included from Mixin::Provides

#provided_as, #provides, #provides?

Methods included from Mixin::DescendantsTracker

#descendants, descendants, direct_descendants, #direct_descendants, find_descendants_by_name, #find_descendants_by_name, #inherited, store_inherited

Methods included from Mixin::LazyModuleInclude

#descendants, #include, #included

Methods included from Mixin::PowershellOut

#powershell_out, #powershell_out!

Methods included from Mixin::WindowsArchitectureHelper

#assert_valid_windows_architecture!, #disable_wow64_file_redirection, #forced_32bit_override_required?, #is_i386_process_on_x86_64_windows?, #node_supports_windows_architecture?, #node_windows_architecture, #restore_wow64_file_redirection, #valid_windows_architecture?, #with_os_architecture, #wow64_architecture_override_required?, #wow64_directory

Methods included from Mixin::PowershellExec

#powershell_exec

Methods included from DSL::Powershell

#ps_credential

Methods included from DSL::RegistryHelper

#registry_data_exists?, #registry_get_subkeys, #registry_get_values, #registry_has_subkeys?, #registry_key_exists?, #registry_value_exists?

Methods included from DSL::DataQuery

#data_bag, #data_bag_item, #search, #tagged?

Methods included from EncryptedDataBagItem::CheckEncrypted

#encrypted?

Methods included from DSL::PlatformIntrospection

#older_than_win_2012_or_8?, #platform?, #platform_family?, #value_for_platform, #value_for_platform_family

Methods included from Mixin::NotifyingBlock

#notifying_block, #subcontext_block

Methods included from DSL::DeclareResource

#build_resource, #declare_resource, #delete_resource, #delete_resource!, #edit_resource, #edit_resource!, #find_resource, #find_resource!, #resources, #with_run_context

Constructor Details

#initialize(new_resource, run_context) ⇒ Mount

Returns a new instance of Mount.



29
30
31
32
# File 'lib/chef/provider/mount/mount.rb', line 29

def initialize(new_resource, run_context)
  super
  @real_device = nil
end

Instance Attribute Details

#real_deviceObject

Returns the value of attribute real_device.



33
34
35
# File 'lib/chef/provider/mount/mount.rb', line 33

def real_device
  @real_device
end

Instance Method Details

#default_mount_optionsObject

Return appropriate default mount options according to the given os.



159
160
161
# File 'lib/chef/provider/mount/mount.rb', line 159

def default_mount_options
  node[:os] == "linux" ? "defaults" : "rw"
end

#device_should_exist?Boolean

Returns:

  • (Boolean)


207
208
209
210
211
# File 'lib/chef/provider/mount/mount.rb', line 207

def device_should_exist?
  ( @new_resource.device != "none" ) &&
    ( not network_device? ) &&
    ( not %w{ cgroup tmpfs fuse vboxsf zfs }.include? @new_resource.fstype )
end

#disable_fsObject



180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/chef/provider/mount/mount.rb', line 180

def disable_fs
  if @current_resource.enabled
    contents = []

    found = false
    ::File.readlines("/etc/fstab").reverse_each do |line|
      if !found && line =~ /^#{device_fstab_regex}\s+#{Regexp.escape(@new_resource.mount_point)}\s/
        found = true
        logger.trace("#{@new_resource} is removed from fstab")
        next
      else
        contents << line
      end
    end

    ::File.open("/etc/fstab", "w") do |fstab|
      contents.reverse_each { |line| fstab.puts line }
    end
  else
    logger.trace("#{@new_resource} is not enabled - nothing to do")
  end
end

#enable_fsObject



163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# File 'lib/chef/provider/mount/mount.rb', line 163

def enable_fs
  if @current_resource.enabled && mount_options_unchanged? && device_unchanged?
    logger.trace("#{@new_resource} is already enabled - nothing to do")
    return nil
  end

  if @current_resource.enabled
    # The current options don't match what we have, so
    # disable, then enable.
    disable_fs
  end
  ::File.open("/etc/fstab", "a") do |fstab|
    fstab.puts("#{device_fstab} #{@new_resource.mount_point} #{@new_resource.fstype} #{@new_resource.options.nil? ? default_mount_options : @new_resource.options.join(",")} #{@new_resource.dump} #{@new_resource.pass}")
    logger.trace("#{@new_resource} is enabled at #{@new_resource.mount_point}")
  end
end

#enabled?Boolean

Returns:

  • (Boolean)


54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/chef/provider/mount/mount.rb', line 54

def enabled?
  # Check to see if there is a entry in /etc/fstab. Last entry for a volume wins.
  enabled = false
  unless ::File.exist?("/etc/fstab")
    logger.debug "/etc/fstab not found, treating mount as not-enabled"
    return
  end
  ::File.foreach("/etc/fstab") do |line|
    case line
    when /^[#\s]/
      next
    when /^(#{device_fstab_regex})\s+#{Regexp.escape(@new_resource.mount_point)}\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)/
      enabled = true
      @current_resource.device($1)
      @current_resource.fstype($2)
      @current_resource.options($3)
      @current_resource.dump($4.to_i)
      @current_resource.pass($5.to_i)
      logger.trace("Found mount #{device_fstab} to #{@new_resource.mount_point} in /etc/fstab")
      next
    when %r{^[/\w]+\s+#{Regexp.escape(@new_resource.mount_point)}\s+}
      enabled = false
      logger.trace("Found conflicting mount point #{@new_resource.mount_point} in /etc/fstab")
    end
  end
  @current_resource.enabled(enabled)
end

#load_current_resourceObject



35
36
37
38
39
40
41
# File 'lib/chef/provider/mount/mount.rb', line 35

def load_current_resource
  @current_resource = Chef::Resource::Mount.new(@new_resource.name)
  @current_resource.mount_point(@new_resource.mount_point)
  @current_resource.device(@new_resource.device)
  mounted?
  enabled?
end

#mount_fsObject



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/chef/provider/mount/mount.rb', line 107

def mount_fs
  unless @current_resource.mounted
    mountable?
    command = [ "mount", "-t", @new_resource.fstype ]
    unless @new_resource.options.nil? || @new_resource.options.empty?
      command << "-o"
      command << @new_resource.options.join(",")
    end
    command << case @new_resource.device_type
               when :device
                 device_real
               when :label
                 [ "-L", @new_resource.device ]
               when :uuid
                 [ "-U", @new_resource.device ]
               end
    command << @new_resource.mount_point
    shell_out!(*command)
    logger.trace("#{@new_resource} is mounted at #{@new_resource.mount_point}")
  else
    logger.trace("#{@new_resource} is already mounted at #{@new_resource.mount_point}")
  end
end

#mountable?Boolean

Returns:

  • (Boolean)


43
44
45
46
47
48
49
50
51
52
# File 'lib/chef/provider/mount/mount.rb', line 43

def mountable?
  # only check for existence of non-remote devices
  if device_should_exist? && !::File.exists?(device_real)
    raise Chef::Exceptions::Mount, "Device #{@new_resource.device} does not exist"
  elsif @new_resource.mount_point != "none" && !::File.exists?(@new_resource.mount_point)
    raise Chef::Exceptions::Mount, "Mount point #{@new_resource.mount_point} does not exist"
  end

  true
end

#mounted?Boolean

Returns:

  • (Boolean)


82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'lib/chef/provider/mount/mount.rb', line 82

def mounted?
  mounted = false

  # "mount" outputs the mount points as real paths. Convert
  # the mount_point of the resource to a real path in case it
  # contains symlinks in its parents dirs.
  real_mount_point = if ::File.exists? @new_resource.mount_point
                       ::File.realpath(@new_resource.mount_point)
                     else
                       @new_resource.mount_point
                     end

  shell_out!("mount").stdout.each_line do |line|
    case line
    when /^#{device_mount_regex}\s+on\s+#{Regexp.escape(real_mount_point)}\s/
      mounted = true
      logger.trace("Special device #{device_logstring} mounted as #{real_mount_point}")
    when %r{^([/\w])+\son\s#{Regexp.escape(real_mount_point)}\s+}
      mounted = false
      logger.trace("Special device #{$~[1]} mounted as #{real_mount_point}")
    end
  end
  @current_resource.mounted(mounted)
end

#network_device?Boolean

Returns:

  • (Boolean)


203
204
205
# File 'lib/chef/provider/mount/mount.rb', line 203

def network_device?
  @new_resource.device =~ /:/ || @new_resource.device =~ %r{//}
end

#remount_commandObject



140
141
142
# File 'lib/chef/provider/mount/mount.rb', line 140

def remount_command
  [ "mount", "-o", "remount,#{@new_resource.options.join(",")}", @new_resource.mount_point ]
end

#remount_fsObject



144
145
146
147
148
149
150
151
152
153
154
155
156
# File 'lib/chef/provider/mount/mount.rb', line 144

def remount_fs
  if @current_resource.mounted && @new_resource.supports[:remount]
    shell_out!(*remount_command)
    @new_resource.updated_by_last_action(true)
    logger.trace("#{@new_resource} is remounted at #{@new_resource.mount_point}")
  elsif @current_resource.mounted
    umount_fs
    sleep 1
    mount_fs
  else
    logger.trace("#{@new_resource} is not mounted at #{@new_resource.mount_point} - nothing to do")
  end
end

#umount_fsObject



131
132
133
134
135
136
137
138
# File 'lib/chef/provider/mount/mount.rb', line 131

def umount_fs
  if @current_resource.mounted
    shell_out!("umount", @new_resource.mount_point)
    logger.trace("#{@new_resource} is no longer mounted at #{@new_resource.mount_point}")
  else
    logger.trace("#{@new_resource} is not mounted at #{@new_resource.mount_point}")
  end
end