# File lib/chef/provider/mount.rb, line 42
      def action_umount
        if @current_resource.mounted
          Chef::Log.debug("#{@new_resource}: attempting to unmount")
          status = umount_fs()
          if status
            @new_resource.updated_by_last_action(true)
            Chef::Log.info("#{@new_resource}: unmounted successfully")
          end
        else
          Chef::Log.debug("#{@new_resource}: not unmounting, already unmounted")
        end
      end