From owner-freebsd-questions@freebsd.org Tue Aug 30 21:31:14 2016 Return-Path: Delivered-To: freebsd-questions@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 C99DABC87B9 for ; Tue, 30 Aug 2016 21:31:14 +0000 (UTC) (envelope-from merlyn@geeks.org) Received: from mail.geeks.org (mail.geeks.org [IPv6:2001:470:c2ca:1::1]) (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 AFCA1983 for ; Tue, 30 Aug 2016 21:31:14 +0000 (UTC) (envelope-from merlyn@geeks.org) Received: from mail.geeks.org (localhost [127.0.0.1]) by after-clamsmtpd.geeks.org (Postfix) with ESMTP id A23DD110235 for ; Tue, 30 Aug 2016 16:31:13 -0500 (CDT) Received: by mail.geeks.org (Postfix, from userid 1003) id 81F97110234; Tue, 30 Aug 2016 16:31:13 -0500 (CDT) Date: Tue, 30 Aug 2016 16:31:13 -0500 From: Doug McIntyre To: freebsd-questions@freebsd.org Subject: Recent changes to Apache 2.4's SUEXEC path? Message-ID: <20160830213113.GA31117@geeks.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.6.1 (2016-04-27) X-Virus-Scanned: ClamAV using ClamSMTP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Aug 2016 21:31:14 -0000 I've been trying to track down a change to Apache 2.4's SUEXEC path, and I just don't where where or when things may have done it. Background, I've got a Pouderier server for doing my site-wide builds. At one point, with no Apache options set for my builds, the SUEXEC_BIN path was set to what I was expecting. /usr/local/sbin/suexec Ie. from a machine that installs packages from my local builder.. $ strings /usr/local/sbin/httpd | fgrep SUEXEC -D SUEXEC_BIN="/usr/local/sbin/suexec" However, after time I started building more packages, and I see that in the packages downloaded directly from pkg.FreeBSD.org, I get this instead.. pkg:~> strings /usr/local/sbin/httpd | fgrep SUEXEC -D SUEXEC_BIN="/usr/local/bin/suexec" And now port builds on my Pouderier building have a different SUEXEC_BIN between Apache and the other mods I've built. I can't find where the SUEXEC_BIN path is set in the port at all, I find no mention in the port Makefile, or any port patches specific to Apache. I don't find any history or changelog for anything like this change. :-( Does anybody have any information or history on what might have changed where? I assume I'll have to do a force rebuild of all packages on my pouderier builder system now to get everything to match again?