# File lib/chef/provider/user.rb, line 133
      def action_modify
        if @user_exists
          if compare_user
            manage_user
            @new_resource.updated_by_last_action(true)
            Chef::Log.info("Modified #{@new_resource}")
          end
        else
          raise Chef::Exceptions::User, "Cannot modify #{@new_resource} - user does not exist!"
        end
      end