From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#25422: GIT_SSL_CAINFO set incorrectly Date: Mon, 23 Jan 2017 14:57:52 +0100 Message-ID: <87lgu1x4in.fsf@gnu.org> References: <20170111203631.GA30202@jasmine> <20170120052747.5759c31b@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36521) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cVf9H-0002i0-5U for bug-guix@gnu.org; Mon, 23 Jan 2017 08:59:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cVf9C-0007SO-Av for bug-guix@gnu.org; Mon, 23 Jan 2017 08:59:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:40632) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cVf9C-0007SK-82 for bug-guix@gnu.org; Mon, 23 Jan 2017 08:59:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cVf9C-0007FI-1e for bug-guix@gnu.org; Mon, 23 Jan 2017 08:59:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20170120052747.5759c31b@gmail.com> (Mekeor Melire's message of "Fri, 20 Jan 2017 05:27:47 +0100") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Mekeor Melire Cc: 25422@debbugs.gnu.org Mekeor Melire skribis: > Adding an option to `search-path-specification' seems like a good idea. > Still, I wonder what this snippet from (gnu system) does: > > (define (operating-system-environment-variables os) > "Return the environment variables of OS for > @var{session-environment-service-type}, to be used in @file{/etc/envi= ronment}." > `(("LANG" . ,(operating-system-locale os)) > ("TZ" . ,(operating-system-timezone os)) > ("TZDIR" . ,(file-append tzdata "/share/zoneinfo")) > ;; Tell 'modprobe' & co. where to look for modules. > ("LINUX_MODULE_DIRECTORY" . "/run/booted-system/kernel/lib/module= s") > ;; These variables are honored by OpenSSL (libssl) and Git. > ("SSL_CERT_DIR" . "/etc/ssl/certs") > ("SSL_CERT_FILE" . "/etc/ssl/certs/ca-certificates.crt") > ("GIT_SSL_CAINFO" . "/etc/ssl/certs/ca-certificates.crt") It defines the content of /etc/environment. Ludo=E2=80=99.