# File lib/chef/provider/user.rb, line 190
      def action_unlock
        if check_lock() == true
          converge_by("unlock user #{@new_resource}") do
            unlock_user
            Chef::Log.info("#{@new_resource} unlocked")
          end
        else
          Chef::Log.debug("#{@new_resource} already unlocked - nothing to do")
        end
      end