# File lib/chef/provider/user.rb, line 97
      def action_create
        if !@user_exists
          create_user
          Chef::Log.info("Created #{@new_resource}")
          @new_resource.updated_by_last_action(true)
        elsif compare_user
          manage_user
          Chef::Log.info("Altered #{@new_resource}")
          @new_resource.updated_by_last_action(true)
        end
      end