From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mekeor Melire Subject: bug#25422: GIT_SSL_CAINFO set incorrectly Date: Fri, 20 Jan 2017 05:27:47 +0100 Message-ID: <20170120052747.5759c31b@gmail.com> References: <20170111203631.GA30202@jasmine> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50841) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUQoz-0007ud-Eq for bug-guix@gnu.org; Thu, 19 Jan 2017 23:29:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUQow-0002qK-Az for bug-guix@gnu.org; Thu, 19 Jan 2017 23:29:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:37766) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cUQow-0002qC-4d for bug-guix@gnu.org; Thu, 19 Jan 2017 23:29:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cUQov-0007No-UZ for bug-guix@gnu.org; Thu, 19 Jan 2017 23:29:01 -0500 In-Reply-To: <20170111203631.GA30202@jasmine> Sender: "Debbugs-submit" Resent-Message-ID: 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: 25422@debbugs.gnu.org I'm experiencing the same issue. I recently installed GuixSD freshly and encountered this bug. 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/environment}." `(("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/modules") ;; 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")