From owner-svn-src-head@freebsd.org Fri May 25 20:55:30 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 72C4DEF4315; Fri, 25 May 2018 20:55:30 +0000 (UTC) (envelope-from mpp302@gmail.com) Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DFF8474265; Fri, 25 May 2018 20:55:29 +0000 (UTC) (envelope-from mpp302@gmail.com) Received: by mail-wm0-f48.google.com with SMTP id o78-v6so17787363wmg.0; Fri, 25 May 2018 13:55:29 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=Wn16NnG3OxHXGZ20BygCxK4S5c9pOtXn7U/6CxT3r/U=; b=IZhyu6WZZ9OiZWVhBdMlTb5x95wZqLpMyxP8ozzTfpBuuxxsHrXm6+R4lgMYI1CVTv tKqy9E1ByRGn3Ru+HiQp0FoylI5+BuuUqHbICLA/ZhwfdkhH8G9VrYk9lq3VVSwLhrCY mzq5riiHehR/S7t7Zy7y7+P8n6lvJV12Mq4OEXg8DvumRl+BRQScG8v7Cr3lZEgMI8KK TW4tbyuUXQs3OuH7uiVxClVzLtrWmHEb1Ji/m8PCngnsqt7Ieb3vfmK7RWqitawql00v UE74MjpOYzYX3L7/xkaaocjBGY20QbUv9xd4Ziq9b/pA1eP8gWHJBPiOjQQ/zLfkyC0P VtmQ== X-Gm-Message-State: ALKqPwfVe2vnWGW4H3WwWcquAMk/iDjjEm/Sgzis5LtnGRceJ+QyJWTD JuPEbnWQWgyB4IIa2hZrC4o9/r3+rcw= X-Google-Smtp-Source: ADUXVKLzyd2E+N2g9iVNp21j1HqD7x32XXhmKSVDVZWcyEU7XfoFY0//fdqVpskRij0p2XJxOjwNUA== X-Received: by 2002:a2e:8794:: with SMTP id n20-v6mr2656541lji.38.1527281723359; Fri, 25 May 2018 13:55:23 -0700 (PDT) Received: from oxy (89-76-8-18.dynamic.chello.pl. [89.76.8.18]) by smtp.gmail.com with ESMTPSA id p76-v6sm5621641lfp.44.2018.05.25.13.55.22 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 25 May 2018 13:55:23 -0700 (PDT) Date: Fri, 25 May 2018 22:56:30 +0200 From: Mateusz Piotrowski <0mp@FreeBSD.org> To: Mark Felder Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r334221 - head/etc Message-ID: <20180525225630.4a74642e@oxy> In-Reply-To: <201805251936.w4PJaQIf093393@repo.freebsd.org> References: <201805251936.w4PJaQIf093393@repo.freebsd.org> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; amd64-portbld-freebsd12.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2018 20:55:30 -0000 On Fri, 25 May 2018 19:36:26 +0000 (UTC) Mark Felder wrote: >Author: feld (ports committer) >Date: Fri May 25 19:36:26 2018 >New Revision: 334221 >URL: https://svnweb.freebsd.org/changeset/base/334221 > >Log: > rc.subr: Support loading environmental variables from a file > > The current support for setting environment via foo_env="" in rc.conf is > not scalable and does not handle envs with spaces in the value. It seems > a common pattern for some newer software is to skip configuration files > altogether and rely on the env. This is well supported in systemd unit > files and may be the inspiration for this trend. > > MFH: 1 week > Differential Revision: https://reviews.freebsd.org/D14453 Do you plan to update the rc.subr manual as well?