From 7f7e2e21bfafb74b812cd320096397c1c265aa9c Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Sat, 21 Oct 2017 16:21:57 -0700 Subject: [PATCH 1/2] Update gpg to use dirmnger.conf. --- dotfiles/gnupg/dirmngr.conf | 2 ++ dotfiles/gnupg/gpg.conf | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 dotfiles/gnupg/dirmngr.conf diff --git a/dotfiles/gnupg/dirmngr.conf b/dotfiles/gnupg/dirmngr.conf new file mode 100644 index 0000000..4d7d735 --- /dev/null +++ b/dotfiles/gnupg/dirmngr.conf @@ -0,0 +1,2 @@ +keyserver hkps://hkps.pool.sks-keyservers.net +hkp-cacert ~/.gnupg/sks-keyservers.pem diff --git a/dotfiles/gnupg/gpg.conf b/dotfiles/gnupg/gpg.conf index 95774cd..00d5fb9 100644 --- a/dotfiles/gnupg/gpg.conf +++ b/dotfiles/gnupg/gpg.conf @@ -1,8 +1,7 @@ use-agent # HKPS requires gnupg-curl for gpg1 keyserver hkps://hkps.pool.sks-keyservers.net -# Unfortunately, the path must be fully-qualified -keyserver-options auto-key-retrieve no-honor-keyserver-url ca-cert-file=/home/david/.gnupg/sks-keyservers.pem +keyserver-options auto-key-retrieve no-honor-keyserver-url auto-key-locate keyserver personal-digest-preferences SHA256 cert-digest-algo SHA256 From 6b23295be9bd5ad7fdddca547124077d94ace22e Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Tue, 24 Oct 2017 21:53:59 -0500 Subject: [PATCH 2/2] Fix jekyll publish command. --- dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh b/dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh index ad86862..2d946fd 100644 --- a/dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh +++ b/dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh @@ -110,7 +110,7 @@ function jekyll { echo "slug is required." return 1 fi - FILENAME=$(_jekyll_find_post "${TITLE}" "${SLUG}") + FILENAME=$(_jekyll_find_post "${TITLE}" "${SLUG}" "${JEKYLL_DIR}") if [ $? -ne 0 ] ; then return fi