# File lib/chef/provider/mount.rb, line 29
      def action_mount
        unless @current_resource.mounted
          Chef::Log.debug("#{@new_resource}: attempting to mount")
          status = mount_fs()
          if status
            @new_resource.updated_by_last_action(true)
            Chef::Log.info("#{@new_resource}: mounted successfully")
          end
        else
          Chef::Log.debug("#{@new_resource}: not mounting, already mounted")
        end
      end