Class: Chef::Provider::Mount::Windows
- Inherits:
-
Chef::Provider::Mount
- Object
- Chef::Provider
- Chef::Provider::Mount
- Chef::Provider::Mount::Windows
- Defined in:
- lib/chef/provider/mount/windows.rb
Constant Summary
Constants included from Mixin::ShellOut
Mixin::ShellOut::DEPRECATED_OPTIONS
Instance Attribute Summary
Attributes inherited from Chef::Provider::Mount
Attributes inherited from Chef::Provider
#action, #cookbook_name, #current_resource, #new_resource, #recipe_name, #run_context
Instance Method Summary collapse
-
#initialize(new_resource, run_context) ⇒ Windows
constructor
A new instance of Windows.
- #is_volume(name) ⇒ Object
- #load_current_resource ⇒ Object
- #mount_fs ⇒ Object
- #umount_fs ⇒ Object
Methods inherited from Chef::Provider::Mount
#action_disable, #action_enable, #action_mount, #action_remount, #action_umount, #disable_fs, #enable_fs, #mount_options_unchanged?, #mounted?, #remount_fs, #whyrun_supported?
Methods included from Mixin::Command
#chdir_or_tmpdir, #handle_command_failures, #output_of_command, #run_command, #run_command_and_return_stdout_stderr, #run_command_with_systems_locale
Methods included from Mixin::Command::Windows
Methods included from Mixin::Command::Unix
Methods inherited from Chef::Provider
#action_nothing, #cleanup_after_converge, #converge_by, #define_resource_requirements, #events, #node, node_map, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, #whyrun_mode?, #whyrun_supported?
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::ShellOut
#run_command_compatible_options, #shell_out, #shell_out!, #shell_out_with_systems_locale, #shell_out_with_systems_locale!
Constructor Details
#initialize(new_resource, run_context) ⇒ Windows
Returns a new instance of Windows.
34 35 36 37 |
# File 'lib/chef/provider/mount/windows.rb', line 34 def initialize(new_resource, run_context) super @mount = nil end |
Instance Method Details
#is_volume(name) ⇒ Object
30 31 32 |
# File 'lib/chef/provider/mount/windows.rb', line 30 def is_volume(name) name =~ /^\\\\\?\\Volume\{[\w-]+\}\\$/ ? true : false end |
#load_current_resource ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/chef/provider/mount/windows.rb', line 39 def load_current_resource if is_volume(@new_resource.device) @mount = Chef::Util::Windows::Volume.new(@new_resource.name) else #assume network drive @mount = Chef::Util::Windows::NetUse.new(@new_resource.name) end @current_resource = Chef::Resource::Mount.new(@new_resource.name) @current_resource.mount_point(@new_resource.mount_point) Chef::Log.debug("Checking for mount point #{@current_resource.mount_point}") begin @current_resource.device(@mount.device) Chef::Log.debug("#{@current_resource.device} mounted on #{@new_resource.mount_point}") @current_resource.mounted(true) rescue ArgumentError => e @current_resource.mounted(false) Chef::Log.debug("#{@new_resource.mount_point} is not mounted: #{e.}") end end |
#mount_fs ⇒ Object
60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/chef/provider/mount/windows.rb', line 60 def mount_fs unless @current_resource.mounted @mount.add(:remote => @new_resource.device, :username => @new_resource.username, :domainname => @new_resource.domain, :password => @new_resource.password) Chef::Log.debug("#{@new_resource} is mounted at #{@new_resource.mount_point}") else Chef::Log.debug("#{@new_resource} is already mounted at #{@new_resource.mount_point}") end end |
#umount_fs ⇒ Object
72 73 74 75 76 77 78 79 |
# File 'lib/chef/provider/mount/windows.rb', line 72 def umount_fs if @current_resource.mounted @mount.delete Chef::Log.debug("#{@new_resource} is no longer mounted at #{@new_resource.mount_point}") else Chef::Log.debug("#{@new_resource} is not mounted at #{@new_resource.mount_point}") end end |