From owner-svn-ports-all@freebsd.org Thu Jan 19 13:46:05 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 660E1CB7A0B; Thu, 19 Jan 2017 13:46:05 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 194D61BF4; Thu, 19 Jan 2017 13:46:05 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0JDk4Rt048617; Thu, 19 Jan 2017 13:46:04 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0JDk4h9048615; Thu, 19 Jan 2017 13:46:04 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201701191346.v0JDk4h9048615@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 19 Jan 2017 13:46:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431869 - in head/print/cups: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 13:46:05 -0000 Author: tijl Date: Thu Jan 19 13:46:03 2017 New Revision: 431869 URL: https://svnweb.freebsd.org/changeset/ports/431869 Log: Remove Kerberos related configuration from default cupsd.conf because Kerberos support is disabled and the configuration causes an error. Reported by: cpm Added: head/print/cups/files/patch-conf_cupsd.conf.in (contents, props changed) Modified: head/print/cups/Makefile Modified: head/print/cups/Makefile ============================================================================== --- head/print/cups/Makefile Thu Jan 19 13:34:51 2017 (r431868) +++ head/print/cups/Makefile Thu Jan 19 13:46:03 2017 (r431869) @@ -4,6 +4,7 @@ PORTNAME= cups PORTVERSION= 2.2.2 DISTVERSIONPREFIX=v +PORTREVISION= 1 CATEGORIES= print MAINTAINER= tijl@FreeBSD.org Added: head/print/cups/files/patch-conf_cupsd.conf.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/cups/files/patch-conf_cupsd.conf.in Thu Jan 19 13:46:03 2017 (r431869) @@ -0,0 +1,52 @@ +--- conf/cupsd.conf.in.orig 2017-01-17 19:27:22 UTC ++++ conf/cupsd.conf.in +@@ -134,49 +134,3 @@ WebInterface @CUPS_WEBIF@ + Order deny,allow + + +- +-# Set the kerberized printer/job policies... +- +- # Job/subscription privacy... +- JobPrivateAccess default +- JobPrivateValues default +- SubscriptionPrivateAccess default +- SubscriptionPrivateValues default +- +- # Job-related operations must be done by the owner or an administrator... +- +- AuthType Negotiate +- Order deny,allow +- +- +- +- AuthType Negotiate +- Require user @OWNER @SYSTEM +- Order deny,allow +- +- +- # All administration operations require an administrator to authenticate... +- +- AuthType Default +- Require user @SYSTEM +- Order deny,allow +- +- +- # All printer operations require a printer operator to authenticate... +- +- AuthType Default +- Require user @CUPS_DEFAULT_PRINTOPERATOR_AUTH@ +- Order deny,allow +- +- +- # Only the owner or an administrator can cancel or authenticate a job... +- +- AuthType Negotiate +- Require user @OWNER @CUPS_DEFAULT_PRINTOPERATOR_AUTH@ +- Order deny,allow +- +- +- +- Order deny,allow +- +-