From: Don Armstrong Date: Sat, 24 Feb 2018 01:20:15 +0000 (-0800) Subject: add /etc/ssl/ca-global/ca-certificates.crt for Debian hosts X-Git-Url: https://git.donarmstrong.com/?p=lib.git;a=commitdiff_plain;h=64a72d16110be0913bd1cbc89927ca3ecc908023 add /etc/ssl/ca-global/ca-certificates.crt for Debian hosts --- diff --git a/emacs_el/configuration/don-configuration.org b/emacs_el/configuration/don-configuration.org index c2053dc..7f0ea1d 100644 --- a/emacs_el/configuration/don-configuration.org +++ b/emacs_el/configuration/don-configuration.org @@ -29,6 +29,10 @@ Borrowed from https://github.com/nilcons/emacs-use-package-fast/ to load [[https://github.com/jwiegley/use-package/][use-package]] even faster #+BEGIN_SRC emacs-lisp (eval-and-compile + ;; add /etc/ssl/ca-global/ca-certificates.crt so that we can + ;; download packages when we're on Debian hosts which chop down the + ;; list of available certificates + (add-to-list 'gnutls-trustfiles "/etc/ssl/ca-global/ca-certificates.crt") (setq package-enable-at-startup nil) (setq package--init-file-ensured t) (setq package-user-dir "~/var/emacs/elpa")