From owner-freebsd-pkg@freebsd.org Sun Nov 6 19:31:52 2016 Return-Path: Delivered-To: freebsd-pkg@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 E9C5DC34B04 for ; Sun, 6 Nov 2016 19:31:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id D2E6BF6B for ; Sun, 6 Nov 2016 19:31:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id CF792C34B03; Sun, 6 Nov 2016 19:31:52 +0000 (UTC) Delivered-To: pkg@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 CF297C34B02 for ; Sun, 6 Nov 2016 19:31:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 BEAD0F6A for ; Sun, 6 Nov 2016 19:31:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uA6JVq7g084411 for ; Sun, 6 Nov 2016 19:31:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 213255] ports-mgmt/pkg: hardlinks aren't installed by make install (fake-pkg) Date: Sun, 06 Nov 2016 19:31:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: tijl@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2016 19:31:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213255 --- Comment #1 from Tijl Coosemans --- Created attachment 176698 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176698&action= =3Dedit patch So this turned out to be caused by /compat being a symlink to usr/compat on= my system and it's a bug in libarchive. It can be reproduced with tar like th= is: % mkdir dir2 % ln -s dir2 dir % touch dir/file % ln dir/file dir/file2 % tar cf dir.tar dir/file dir/file2 % rm dir/* % tar xf dir.tar -P dir/file2: Can't create 'dir/file2' tar: Error exit delayed from previous errors. tijl@kalimero:~/tmp/test% ls -l dir/ total 0 -rw-r--r-- 1 tijl wheel 0 6 Nov 20:05 file With -P extraction through a symlink (dir->dir2) should work, but fails for hardlinks. The attached patch fixes this. In archive_write_disk_posix.c the function create_filesystem_object() calls check_symlinks_fsobj() in the case of hardlinks, but not in the case of symlinks or regular files. The patch rem= oves this call. check_symlinks_fsobj() is still called elsewhere in the same fi= le and the 'tar xf' command above without -P still fails on both archive entri= es. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Sun Nov 6 19:35:48 2016 Return-Path: Delivered-To: freebsd-pkg@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 288E4C34E32 for ; Sun, 6 Nov 2016 19:35:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 85280255 for ; Sun, 6 Nov 2016 19:35:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 83FC8C34E2C; Sun, 6 Nov 2016 19:35:46 +0000 (UTC) Delivered-To: pkg@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 835BAC34E2B for ; Sun, 6 Nov 2016 19:35:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 0F864253 for ; Sun, 6 Nov 2016 19:35:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uA6JZj90089819 for ; Sun, 6 Nov 2016 19:35:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 213255] libarchive: tar -P cannot extract hardlinks through symlinks Date: Sun, 06 Nov 2016 19:35:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: tijl@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: mm@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc assigned_to version product component flagtypes.name Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2016 19:35:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213255 Tijl Coosemans changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|ports-mgmt/pkg: hardlinks |libarchive: tar -P cannot |aren't installed by make |extract hardlinks through |install (fake-pkg) |symlinks Assignee|pkg@FreeBSD.org |mm@FreeBSD.org Version|Latest |CURRENT Product|Ports & Packages |Base System Component|Individual Port(s) |bin Flags|maintainer-feedback?(pkg@Fr | |eeBSD.org) | --- Comment #2 from Tijl Coosemans --- Assign to mm who works on libarchive. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Sun Nov 6 21:00:31 2016 Return-Path: Delivered-To: freebsd-pkg@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 18BBDC341F4 for ; Sun, 6 Nov 2016 21:00:31 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 092A66E7 for ; Sun, 6 Nov 2016 21:00:31 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0896FC341EF; Sun, 6 Nov 2016 21:00:31 +0000 (UTC) Delivered-To: pkg@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 0846DC341EE for ; Sun, 6 Nov 2016 21:00:31 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 DB4146E3 for ; Sun, 6 Nov 2016 21:00:30 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uA6L0187009795 for ; Sun, 6 Nov 2016 21:00:30 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201611062100.uA6L0187009795@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: pkg@FreeBSD.org Subject: Problem reports for pkg@FreeBSD.org that need special attention Date: Sun, 06 Nov 2016 21:00:30 +0000 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2016 21:00:31 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- In Progress | 212022 | ports-mgmt/pkg: Segfaults when installing sensu p Open | 211141 | ports-mgmt/pkg: pkg+pw: Doesn't run pwd_mkdb, may New | 193995 | [PATCH] ports-mgmt/pkg: floating point exception 3 problems total for which you should take action. From owner-freebsd-pkg@freebsd.org Wed Nov 9 11:29:05 2016 Return-Path: Delivered-To: freebsd-pkg@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 E7292C385C0 for ; Wed, 9 Nov 2016 11:29:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id D11F02E7 for ; Wed, 9 Nov 2016 11:29:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id CD485C385BF; Wed, 9 Nov 2016 11:29:05 +0000 (UTC) Delivered-To: pkg@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 CCE75C385BE for ; Wed, 9 Nov 2016 11:29:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 BCF3B2E6 for ; Wed, 9 Nov 2016 11:29:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uA9BT5p1044280 for ; Wed, 9 Nov 2016 11:29:05 GMT (envelope-from bugzilla-noreply@freebsd.org) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: maintainer-feedback requested: [Bug 214357] ports-mgmt/pkg: >= 1.9.0 client certificate permission denied Date: Wed, 09 Nov 2016 11:29:05 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 11:29:06 -0000 Eugene V. Lyapin has reassigned Bugzilla Automation 's request for maintainer-feedback to pkg@FreeBSD.org: Bug 214357: ports-mgmt/pkg: >=3D 1.9.0 client certificate permission denied https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214357 --- Description --- Created attachment 176814 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176814&action= =3Dedit pkg.conf Hello,=20 After commiting new feature to 1.9.0: - Drop privileges in many commands pkg forks with user 'nobody' and have no access to SSL client certificate, trying to read it. data4# pkg -v 1.9.3 pkg.conf has following: ... PKG_ENV { SSL_CLIENT_CERT_FILE: "/usr/local/etc/ssl/repo/repo.domain.com-client.c= rt", SSL_CLIENT_KEY_FILE: "/usr/local/etc/ssl/repo/repo.domain.com-client.ke= y", SSL_CA_CERT_FILE: "/usr/local/etc/ssl/repo/KLCA.pem", } ... The client private key has root:wheel(640) perms by security reasons): -rw-r----- 1 root wheel 1925 Mar 18 2015 /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key By using DEBUG=3D9 (pkg.conf) we get this: data4# pkg update -r FreeBSD DBG(1)[13206]> Setting env var: SSL_CLIENT_CERT_FILE DBG(1)[13206]> Setting env var: SSL_CLIENT_KEY_FILE DBG(1)[13206]> Setting env var: SSL_CA_CERT_FILE DBG(1)[13206]> PkgConfig: loading repositories in /etc/pkg/ DBG(1)[13206]> PkgConfig: loading repositories in /usr/local/etc/pkg/repos/ DBG(1)[13206]> PKgConfig: loading /usr/local/etc/pkg/repos/FreeBSD.conf DBG(1)[13206]> PkgConfig: parsing key 'FreeBSD' DBG(1)[13206]> PkgConfig: parsing repository object FreeBSD DBG(1)[13206]> PkgConfig: parsing key 'FreeBSD_stage' DBG(1)[13206]> PkgConfig: parsing repository object FreeBSD_stage DBG(1)[13206]> PkgConfig: parsing key 'FreeBSD_official' DBG(1)[13206]> PkgConfig: parsing repository object FreeBSD_official Updating FreeBSD repository catalogue... DBG(1)[13206]> PkgRepo: verifying update for FreeBSD DBG(4)[13206]> Pkgdb: running 'SELECT count(name) FROM sqlite_master WHERE type=3D'table' AND name=3D'repodata';' DBG(4)[13206]> Pkgdb: running 'select count(key) from repodata WHERE key =3D "packagesite" and value =3D 'pkg+https://repo.kaspersky-labs.com/packages/FreeBSD:10:amd64/161106/ftp'' Repository FreeBSD has a wrong packagesite, need to re-create database DBG(1)[13206]> PkgRepo: need forced update of FreeBSD DBG(1)[13206]> Pkgrepo, begin update of '/var/db/pkg/repo-FreeBSD.sqlite' DBG(1)[13207]> Fetch: fetching from: https://repo.kaspersky-labs.com/packages/FreeBSD:10:amd64/161106/ftp/meta.t= xz with opts "iv" looking up repo.kaspersky-labs.com connecting to repo.kaspersky-labs.com:443 SSL options: 83004bff Peer verification enabled Using CA cert file: /usr/local/etc/ssl/repo/KLCA.pem Using client cert file: /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.crt Using client key file: /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key Could not load client key /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key ... chown nobody:wheel helps, but it's not secure. Best regards, Eugene From owner-freebsd-pkg@freebsd.org Wed Nov 9 11:29:06 2016 Return-Path: Delivered-To: freebsd-pkg@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 19ADFC385C4 for ; Wed, 9 Nov 2016 11:29:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 032DF2E9 for ; Wed, 9 Nov 2016 11:29:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 02808C385C2; Wed, 9 Nov 2016 11:29:06 +0000 (UTC) Delivered-To: pkg@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 0073EC385C1 for ; Wed, 9 Nov 2016 11:29:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 E405F2E8 for ; Wed, 9 Nov 2016 11:29:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uA9BT5p3044280 for ; Wed, 9 Nov 2016 11:29:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 214357] ports-mgmt/pkg: >= 1.9.0 client certificate permission denied Date: Wed, 09 Nov 2016 11:29:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ev.lyapin@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 11:29:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214357 Bug ID: 214357 Summary: ports-mgmt/pkg: >=3D 1.9.0 client certificate permission denied Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: pkg@FreeBSD.org Reporter: ev.lyapin@gmail.com Flags: maintainer-feedback?(pkg@FreeBSD.org) Assignee: pkg@FreeBSD.org Created attachment 176814 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176814&action= =3Dedit pkg.conf Hello,=20 After commiting new feature to 1.9.0: - Drop privileges in many commands pkg forks with user 'nobody' and have no access to SSL client certificate, trying to read it. data4# pkg -v 1.9.3 pkg.conf has following: ... PKG_ENV { SSL_CLIENT_CERT_FILE: "/usr/local/etc/ssl/repo/repo.domain.com-client.c= rt", SSL_CLIENT_KEY_FILE: "/usr/local/etc/ssl/repo/repo.domain.com-client.ke= y", SSL_CA_CERT_FILE: "/usr/local/etc/ssl/repo/KLCA.pem", } ... The client private key has root:wheel(640) perms by security reasons): -rw-r----- 1 root wheel 1925 Mar 18 2015 /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key By using DEBUG=3D9 (pkg.conf) we get this: data4# pkg update -r FreeBSD DBG(1)[13206]> Setting env var: SSL_CLIENT_CERT_FILE DBG(1)[13206]> Setting env var: SSL_CLIENT_KEY_FILE DBG(1)[13206]> Setting env var: SSL_CA_CERT_FILE DBG(1)[13206]> PkgConfig: loading repositories in /etc/pkg/ DBG(1)[13206]> PkgConfig: loading repositories in /usr/local/etc/pkg/repos/ DBG(1)[13206]> PKgConfig: loading /usr/local/etc/pkg/repos/FreeBSD.conf DBG(1)[13206]> PkgConfig: parsing key 'FreeBSD' DBG(1)[13206]> PkgConfig: parsing repository object FreeBSD DBG(1)[13206]> PkgConfig: parsing key 'FreeBSD_stage' DBG(1)[13206]> PkgConfig: parsing repository object FreeBSD_stage DBG(1)[13206]> PkgConfig: parsing key 'FreeBSD_official' DBG(1)[13206]> PkgConfig: parsing repository object FreeBSD_official Updating FreeBSD repository catalogue... DBG(1)[13206]> PkgRepo: verifying update for FreeBSD DBG(4)[13206]> Pkgdb: running 'SELECT count(name) FROM sqlite_master WHERE type=3D'table' AND name=3D'repodata';' DBG(4)[13206]> Pkgdb: running 'select count(key) from repodata WHERE key =3D "packagesite" and value =3D 'pkg+https://repo.kaspersky-labs.com/packages/FreeBSD:10:amd64/161106/ftp'' Repository FreeBSD has a wrong packagesite, need to re-create database DBG(1)[13206]> PkgRepo: need forced update of FreeBSD DBG(1)[13206]> Pkgrepo, begin update of '/var/db/pkg/repo-FreeBSD.sqlite' DBG(1)[13207]> Fetch: fetching from: https://repo.kaspersky-labs.com/packages/FreeBSD:10:amd64/161106/ftp/meta.t= xz with opts "iv" looking up repo.kaspersky-labs.com connecting to repo.kaspersky-labs.com:443 SSL options: 83004bff Peer verification enabled Using CA cert file: /usr/local/etc/ssl/repo/KLCA.pem Using client cert file: /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.crt Using client key file: /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key Could not load client key /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key ... chown nobody:wheel helps, but it's not secure. Best regards, Eugene --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Wed Nov 9 11:30:02 2016 Return-Path: Delivered-To: freebsd-pkg@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 4A402C38645 for ; Wed, 9 Nov 2016 11:30:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 343B7398 for ; Wed, 9 Nov 2016 11:30:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 33A6BC38643; Wed, 9 Nov 2016 11:30:02 +0000 (UTC) Delivered-To: pkg@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 33541C38642 for ; Wed, 9 Nov 2016 11:30:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 23A44397 for ; Wed, 9 Nov 2016 11:30:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uA9BU2LL045623 for ; Wed, 9 Nov 2016 11:30:02 GMT (envelope-from bugzilla-noreply@freebsd.org) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: maintainer-feedback requested: [Bug 214358] ports-mgmt/pkg: >= 1.9.0 client certificate permission denied Date: Wed, 09 Nov 2016 11:30:02 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 11:30:02 -0000 Eugene V. Lyapin has reassigned Bugzilla Automation 's request for maintainer-feedback to pkg@FreeBSD.org: Bug 214358: ports-mgmt/pkg: >=3D 1.9.0 client certificate permission denied https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214358 --- Description --- Hello,=20 After commiting new feature to 1.9.0: - Drop privileges in many commands pkg forks with user 'nobody' and have no access to SSL client certificate, trying to read it. data4# pkg -v 1.9.3 pkg.conf has following: ... PKG_ENV { SSL_CLIENT_CERT_FILE: "/usr/local/etc/ssl/repo/repo.domain.com-client.c= rt", SSL_CLIENT_KEY_FILE: "/usr/local/etc/ssl/repo/repo.domain.com-client.ke= y", SSL_CA_CERT_FILE: "/usr/local/etc/ssl/repo/KLCA.pem", } ... The client private key has root:wheel(640) perms by security reasons): -rw-r----- 1 root wheel 1925 Mar 18 2015 /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key By using DEBUG=3D9 (pkg.conf) we get this: data4# pkg update -r FreeBSD DBG(1)[13206]> Setting env var: SSL_CLIENT_CERT_FILE DBG(1)[13206]> Setting env var: SSL_CLIENT_KEY_FILE DBG(1)[13206]> Setting env var: SSL_CA_CERT_FILE DBG(1)[13206]> PkgConfig: loading repositories in /etc/pkg/ DBG(1)[13206]> PkgConfig: loading repositories in /usr/local/etc/pkg/repos/ DBG(1)[13206]> PKgConfig: loading /usr/local/etc/pkg/repos/FreeBSD.conf DBG(1)[13206]> PkgConfig: parsing key 'FreeBSD' DBG(1)[13206]> PkgConfig: parsing repository object FreeBSD DBG(1)[13206]> PkgConfig: parsing key 'FreeBSD_stage' DBG(1)[13206]> PkgConfig: parsing repository object FreeBSD_stage DBG(1)[13206]> PkgConfig: parsing key 'FreeBSD_official' DBG(1)[13206]> PkgConfig: parsing repository object FreeBSD_official Updating FreeBSD repository catalogue... DBG(1)[13206]> PkgRepo: verifying update for FreeBSD DBG(4)[13206]> Pkgdb: running 'SELECT count(name) FROM sqlite_master WHERE type=3D'table' AND name=3D'repodata';' DBG(4)[13206]> Pkgdb: running 'select count(key) from repodata WHERE key =3D "packagesite" and value =3D 'pkg+https://repo.kaspersky-labs.com/packages/FreeBSD:10:amd64/161106/ftp'' Repository FreeBSD has a wrong packagesite, need to re-create database DBG(1)[13206]> PkgRepo: need forced update of FreeBSD DBG(1)[13206]> Pkgrepo, begin update of '/var/db/pkg/repo-FreeBSD.sqlite' DBG(1)[13207]> Fetch: fetching from: https://repo.kaspersky-labs.com/packages/FreeBSD:10:amd64/161106/ftp/meta.t= xz with opts "iv" looking up repo.kaspersky-labs.com connecting to repo.kaspersky-labs.com:443 SSL options: 83004bff Peer verification enabled Using CA cert file: /usr/local/etc/ssl/repo/KLCA.pem Using client cert file: /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.crt Using client key file: /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key Could not load client key /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key ... chown nobody:wheel helps, but it's not secure. Best regards, Eugene From owner-freebsd-pkg@freebsd.org Wed Nov 9 11:30:02 2016 Return-Path: Delivered-To: freebsd-pkg@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 72835C38649 for ; Wed, 9 Nov 2016 11:30:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 5C45339D for ; Wed, 9 Nov 2016 11:30:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5BAEEC38647; Wed, 9 Nov 2016 11:30:02 +0000 (UTC) Delivered-To: pkg@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 5B5EDC38646 for ; Wed, 9 Nov 2016 11:30:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 4B218399 for ; Wed, 9 Nov 2016 11:30:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uA9BU2LN045623 for ; Wed, 9 Nov 2016 11:30:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 214358] ports-mgmt/pkg: >= 1.9.0 client certificate permission denied Date: Wed, 09 Nov 2016 11:30:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ev.lyapin@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 11:30:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214358 Bug ID: 214358 Summary: ports-mgmt/pkg: >=3D 1.9.0 client certificate permission denied Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: pkg@FreeBSD.org Reporter: ev.lyapin@gmail.com Assignee: pkg@FreeBSD.org Flags: maintainer-feedback?(pkg@FreeBSD.org) Hello,=20 After commiting new feature to 1.9.0: - Drop privileges in many commands pkg forks with user 'nobody' and have no access to SSL client certificate, trying to read it. data4# pkg -v 1.9.3 pkg.conf has following: ... PKG_ENV { SSL_CLIENT_CERT_FILE: "/usr/local/etc/ssl/repo/repo.domain.com-client.c= rt", SSL_CLIENT_KEY_FILE: "/usr/local/etc/ssl/repo/repo.domain.com-client.ke= y", SSL_CA_CERT_FILE: "/usr/local/etc/ssl/repo/KLCA.pem", } ... The client private key has root:wheel(640) perms by security reasons): -rw-r----- 1 root wheel 1925 Mar 18 2015 /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key By using DEBUG=3D9 (pkg.conf) we get this: data4# pkg update -r FreeBSD DBG(1)[13206]> Setting env var: SSL_CLIENT_CERT_FILE DBG(1)[13206]> Setting env var: SSL_CLIENT_KEY_FILE DBG(1)[13206]> Setting env var: SSL_CA_CERT_FILE DBG(1)[13206]> PkgConfig: loading repositories in /etc/pkg/ DBG(1)[13206]> PkgConfig: loading repositories in /usr/local/etc/pkg/repos/ DBG(1)[13206]> PKgConfig: loading /usr/local/etc/pkg/repos/FreeBSD.conf DBG(1)[13206]> PkgConfig: parsing key 'FreeBSD' DBG(1)[13206]> PkgConfig: parsing repository object FreeBSD DBG(1)[13206]> PkgConfig: parsing key 'FreeBSD_stage' DBG(1)[13206]> PkgConfig: parsing repository object FreeBSD_stage DBG(1)[13206]> PkgConfig: parsing key 'FreeBSD_official' DBG(1)[13206]> PkgConfig: parsing repository object FreeBSD_official Updating FreeBSD repository catalogue... DBG(1)[13206]> PkgRepo: verifying update for FreeBSD DBG(4)[13206]> Pkgdb: running 'SELECT count(name) FROM sqlite_master WHERE type=3D'table' AND name=3D'repodata';' DBG(4)[13206]> Pkgdb: running 'select count(key) from repodata WHERE key =3D "packagesite" and value =3D 'pkg+https://repo.kaspersky-labs.com/packages/FreeBSD:10:amd64/161106/ftp'' Repository FreeBSD has a wrong packagesite, need to re-create database DBG(1)[13206]> PkgRepo: need forced update of FreeBSD DBG(1)[13206]> Pkgrepo, begin update of '/var/db/pkg/repo-FreeBSD.sqlite' DBG(1)[13207]> Fetch: fetching from: https://repo.kaspersky-labs.com/packages/FreeBSD:10:amd64/161106/ftp/meta.t= xz with opts "iv" looking up repo.kaspersky-labs.com connecting to repo.kaspersky-labs.com:443 SSL options: 83004bff Peer verification enabled Using CA cert file: /usr/local/etc/ssl/repo/KLCA.pem Using client cert file: /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.crt Using client key file: /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key Could not load client key /usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key ... chown nobody:wheel helps, but it's not secure. Best regards, Eugene --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Wed Nov 9 11:33:11 2016 Return-Path: Delivered-To: freebsd-pkg@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 355B5C387A3 for ; Wed, 9 Nov 2016 11:33:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 1EA93912 for ; Wed, 9 Nov 2016 11:33:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 1B0DBC387A2; Wed, 9 Nov 2016 11:33:11 +0000 (UTC) Delivered-To: pkg@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 18F91C387A1 for ; Wed, 9 Nov 2016 11:33:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 F1AE0911 for ; Wed, 9 Nov 2016 11:33:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uA9BXAXP059888 for ; Wed, 9 Nov 2016 11:33:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 214358] ports-mgmt/pkg: >= 1.9.0 client certificate permission denied Date: Wed, 09 Nov 2016 11:33:11 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ev.lyapin@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 11:33:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214358 Eugene V. Lyapin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ev.lyapin@gmail.com --- Comment #1 from Eugene V. Lyapin --- Sorry, correct PKG_ENV (pkg.conf): PKG_ENV { SSL_CLIENT_CERT_FILE: "/usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.crt", SSL_CLIENT_KEY_FILE: "/usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key", SSL_CA_CERT_FILE: "/usr/local/etc/ssl/repo/KLCA.pem", } --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Wed Nov 9 11:46:33 2016 Return-Path: Delivered-To: freebsd-pkg@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 18B36C38B4B for ; Wed, 9 Nov 2016 11:46:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 01C71F12 for ; Wed, 9 Nov 2016 11:46:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id F251AC38B4A; Wed, 9 Nov 2016 11:46:32 +0000 (UTC) Delivered-To: pkg@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 F1FC0C38B49 for ; Wed, 9 Nov 2016 11:46:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 E13C7F10 for ; Wed, 9 Nov 2016 11:46:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uA9BkWkH085705 for ; Wed, 9 Nov 2016 11:46:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 214358] ports-mgmt/pkg: >= 1.9.0 client certificate permission denied Date: Wed, 09 Nov 2016 11:46:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: vlad-fbsd@acheronmedia.com X-Bugzilla-Status: Closed X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 11:46:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214358 Vladimir Krstulja changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |DUPLICATE Status|New |Closed --- Comment #2 from Vladimir Krstulja --- *** This bug has been marked as a duplicate of bug 214357 *** --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Wed Nov 9 11:46:33 2016 Return-Path: Delivered-To: freebsd-pkg@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 5BCB0C38B4F for ; Wed, 9 Nov 2016 11:46:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 459F5F15 for ; Wed, 9 Nov 2016 11:46:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4511AC38B4E; Wed, 9 Nov 2016 11:46:33 +0000 (UTC) Delivered-To: pkg@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 44C3BC38B4D for ; Wed, 9 Nov 2016 11:46:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 34690F14 for ; Wed, 9 Nov 2016 11:46:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uA9BkWkL085705 for ; Wed, 9 Nov 2016 11:46:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 214357] ports-mgmt/pkg: >= 1.9.0 client certificate permission denied Date: Wed, 09 Nov 2016 11:46:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: vlad-fbsd@acheronmedia.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 11:46:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214357 --- Comment #1 from Vladimir Krstulja --- *** Bug 214358 has been marked as a duplicate of this bug. *** --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Wed Nov 9 11:50:49 2016 Return-Path: Delivered-To: freebsd-pkg@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 1F1F5C38CAB for ; Wed, 9 Nov 2016 11:50:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 08B422B for ; Wed, 9 Nov 2016 11:50:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0808CC38CAA; Wed, 9 Nov 2016 11:50:49 +0000 (UTC) Delivered-To: pkg@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 07AD2C38CA9 for ; Wed, 9 Nov 2016 11:50:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 EB94928 for ; Wed, 9 Nov 2016 11:50:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uA9BomqP091110 for ; Wed, 9 Nov 2016 11:50:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 214357] ports-mgmt/pkg: >= 1.9.0 client certificate permission denied Date: Wed, 09 Nov 2016 11:50:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ev.lyapin@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 11:50:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214357 --- Comment #2 from Eugene V. Lyapin --- Sorry, correct PKG_ENV: PKG_ENV { SSL_CLIENT_CERT_FILE: "/usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.crt", SSL_CLIENT_KEY_FILE: "/usr/local/etc/ssl/repo/repo.kaspersky-labs.com-client.key", SSL_CA_CERT_FILE: "/usr/local/etc/ssl/repo/KLCA.pem", } --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Wed Nov 9 11:53:15 2016 Return-Path: Delivered-To: freebsd-pkg@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 457E4C38CD2 for ; Wed, 9 Nov 2016 11:53:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 2E4562BD for ; Wed, 9 Nov 2016 11:53:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 2D9F3C38CD1; Wed, 9 Nov 2016 11:53:15 +0000 (UTC) Delivered-To: pkg@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 2B821C38CD0 for ; Wed, 9 Nov 2016 11:53:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 14EEA2BB for ; Wed, 9 Nov 2016 11:53:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uA9BrECu002477 for ; Wed, 9 Nov 2016 11:53:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 214358] ports-mgmt/pkg: >= 1.9.0 client certificate permission denied Date: Wed, 09 Nov 2016 11:53:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: vlad-fbsd@acheronmedia.com X-Bugzilla-Status: Closed X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vlad-fbsd@acheronmedia.com X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 11:53:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214358 Vladimir Krstulja changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|pkg@FreeBSD.org |vlad-fbsd@acheronmedia.com --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Fri Nov 11 22:28:50 2016 Return-Path: Delivered-To: freebsd-pkg@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 83837C3CB10 for ; Fri, 11 Nov 2016 22:28:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 6D8301928 for ; Fri, 11 Nov 2016 22:28:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 69C06C3CB0F; Fri, 11 Nov 2016 22:28:50 +0000 (UTC) Delivered-To: pkg@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 69683C3CB0E for ; Fri, 11 Nov 2016 22:28:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 58F981926 for ; Fri, 11 Nov 2016 22:28:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uABMSouX050960 for ; Fri, 11 Nov 2016 22:28:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 212335] mail/spamd: /etc/services entries are deleted on reinstall Date: Fri, 11 Nov 2016 22:28:50 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ohauer@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 22:28:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212335 --- Comment #4 from Baptiste Daroussin --- The order is actually expected. I should probably document somewhere the why and the how an upgrade is process. But this is totally not a first deinstall then install as it does not work at all on complex cases. the backlog, on pkg is mostly feature request or thing we keep open because= we do not necessary agree in the beginning with the request that have been mad= e, but we might change our mind in the feature :) --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-pkg@freebsd.org Fri Nov 11 22:29:37 2016 Return-Path: Delivered-To: freebsd-pkg@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 B3B27C3CB2B for ; Fri, 11 Nov 2016 22:29:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 9D8CF1978 for ; Fri, 11 Nov 2016 22:29:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 9CE7AC3CB2A; Fri, 11 Nov 2016 22:29:37 +0000 (UTC) Delivered-To: pkg@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 9C8B5C3CB29 for ; Fri, 11 Nov 2016 22:29:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 8C0501977 for ; Fri, 11 Nov 2016 22:29:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uABMTbr5051902 for ; Fri, 11 Nov 2016 22:29:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 214357] ports-mgmt/pkg: >= 1.9.0 client certificate permission denied Date: Fri, 11 Nov 2016 22:29:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 22:29:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214357 --- Comment #3 from Baptiste Daroussin --- Fixed in git would be released soon --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-pkg@freebsd.org Fri Nov 11 22:35:22 2016 Return-Path: Delivered-To: freebsd-pkg@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 E9042C3CC74 for ; Fri, 11 Nov 2016 22:35:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id D2CFB1C61 for ; Fri, 11 Nov 2016 22:35:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id CF53DC3CC73; Fri, 11 Nov 2016 22:35:22 +0000 (UTC) Delivered-To: pkg@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 CF010C3CC72 for ; Fri, 11 Nov 2016 22:35:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 BECF41C60 for ; Fri, 11 Nov 2016 22:35:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uABMZMM5067429 for ; Fri, 11 Nov 2016 22:35:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 212335] mail/spamd: /etc/services entries are deleted on reinstall Date: Fri, 11 Nov 2016 22:35:23 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adamw@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ohauer@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 22:35:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212335 --- Comment #5 from Adam Weinberger --- So then what's the right way for spamd to handle adding and removing lines = from /etc/services? If it adds the lines in POST-INSTALL would that always run a= fter DEINSTALL? --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-pkg@freebsd.org Fri Nov 11 22:56:33 2016 Return-Path: Delivered-To: freebsd-pkg@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 CE51DC3CFA0 for ; Fri, 11 Nov 2016 22:56:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id B7F921359 for ; Fri, 11 Nov 2016 22:56:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id B3F33C3CF9F; Fri, 11 Nov 2016 22:56:33 +0000 (UTC) Delivered-To: pkg@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 B3967C3CF9E for ; Fri, 11 Nov 2016 22:56:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 A35F21356 for ; Fri, 11 Nov 2016 22:56:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uABMuXPn011081 for ; Fri, 11 Nov 2016 22:56:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 212335] mail/spamd: /etc/services entries are deleted on reinstall Date: Fri, 11 Nov 2016 22:56:33 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ohauer@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 22:56:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212335 --- Comment #6 from Baptiste Daroussin --- The right way is to add things in post-install: aka only if the installation has succeed which is anyway better Actually the best would be to add a keyword for that :) so all ports adding services would benefit from it :) --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-pkg@freebsd.org Fri Nov 11 23:47:04 2016 Return-Path: Delivered-To: freebsd-pkg@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 6AD21C3999D for ; Fri, 11 Nov 2016 23:47:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 54C1E18F3 for ; Fri, 11 Nov 2016 23:47:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5086FC3999B; Fri, 11 Nov 2016 23:47:04 +0000 (UTC) Delivered-To: pkg@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 4E641C39998 for ; Fri, 11 Nov 2016 23:47:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 3237318EF for ; Fri, 11 Nov 2016 23:47:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uABNl3Zu053629 for ; Fri, 11 Nov 2016 23:47:04 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 212335] mail/spamd: /etc/services entries are deleted on reinstall Date: Fri, 11 Nov 2016 23:47:04 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ohauer@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 23:47:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212335 --- Comment #7 from Baptiste Daroussin --- I would propose this: https://reviews.freebsd.org/D8504 --=20 You are receiving this mail because: You are on the CC list for the bug.=