From owner-dev-commits-src-all@freebsd.org Mon Sep 27 11:51:49 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1046E6B42A4; Mon, 27 Sep 2021 11:51:49 +0000 (UTC) (envelope-from manu@bidouilliste.com) Received: from mx.blih.net (mail.blih.net [212.83.155.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mx.blih.net", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HJ1Fc2nKkz4tQ3; Mon, 27 Sep 2021 11:51:48 +0000 (UTC) (envelope-from manu@bidouilliste.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bidouilliste.com; s=mx; t=1632743501; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=VPoVwHte/8w+m8PNK+FZZaiqd5fFdsv0nW/KyUlyk9o=; b=IZTNMue+JCiqQiTxiX27VbbXgtAMuSWy3MJrAikYB4VtIBKvOak9pQsqtIto3tOgzHzpHz TtMKjutzGp2a14tjjU3UMbf35o9jofn8dLYtkZqIdoGQ4uXU1FYHpqyNQVuVLbottGpTl8 LJFsGdwfLxDoV7VYMYiEZgiDA6/6hNw= Received: from amy (lfbn-idf2-1-644-191.w86-247.abo.wanadoo.fr [86.247.100.191]) by mx.blih.net (OpenSMTPD) with ESMTPSA id 0ca16052 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Mon, 27 Sep 2021 11:51:41 +0000 (UTC) Date: Mon, 27 Sep 2021 13:51:40 +0200 From: Emmanuel Vadot To: Kristof Provost Cc: Emmanuel Vadot , src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: Re: git: a30235a4c360 - main - pkgbase: Create a FreeBSD-kerberos package Message-Id: <20210927135140.2dcc977740609d80065aa5a7@bidouilliste.com> In-Reply-To: References: <202109070952.1879q63H010763@gitrepo.freebsd.org> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.33; amd64-portbld-freebsd14.0) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 4HJ1Fc2nKkz4tQ3 X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Sep 2021 11:51:49 -0000 On Mon, 27 Sep 2021 13:03:31 +0200 Kristof Provost wrote: > On 7 Sep 2021, at 11:52, Emmanuel Vadot wrote: > > The branch main has been updated by manu: > > > > URL: https://cgit.FreeBSD.org/src/commit/?id=3Da30235a4c360c06bb57be1f1= 0ae6866a71fb5622 > > > > commit a30235a4c360c06bb57be1f10ae6866a71fb5622 > > Author: Emmanuel Vadot > > AuthorDate: 2021-09-02 04:09:15 +0000 > > Commit: Emmanuel Vadot > > CommitDate: 2021-09-07 08:23:14 +0000 > > > > pkgbase: Create a FreeBSD-kerberos package > > > > This allows users to install or not kerberos related utilities > > and libs. > > > > Differential Revision: https://reviews.freebsd.org/D31801 > > --- >=20 > Is it possible that this commit caused /etc/rc.d/gssd to no longer get in= stalled? > (I?m not sure this is the responsible commit. I?ve very carefully avoided= learning anything about our build system.) >=20 > Kristof Really possible yes, Can you test : diff --git a/libexec/rc/rc.d/Makefile b/libexec/rc/rc.d/Makefile index 2271c27b7f8..5981b3b03d1 100644 --- a/libexec/rc/rc.d/Makefile +++ b/libexec/rc/rc.d/Makefile @@ -191,7 +191,7 @@ CONFS+=3D ftpd .endif =20 .if ${MK_GSSAPI} !=3D "no" -CONFGROUPS+=3D gssd +CONFGROUPS+=3D GSSD GSSD=3D gssd GSSDPACKAGE=3D kerberos .endif --=20 Emmanuel Vadot