From 1bba382c05aa988ad7eb48981ac5e2e14dd3e171 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Tue, 17 Nov 2015 10:47:20 +0800 Subject: [PATCH 1/2] letsencrypt-auto: Add instructions to use pacman on Arch --- letsencrypt-auto | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/letsencrypt-auto b/letsencrypt-auto index a3009fe52..64af92ebe 100755 --- a/letsencrypt-auto +++ b/letsencrypt-auto @@ -126,8 +126,17 @@ then echo "Bootstrapping dependencies for openSUSE-based OSes..." $SUDO $BOOTSTRAP/_suse_common.sh elif [ -f /etc/arch-release ] ; then - echo "Bootstrapping dependencies for Archlinux..." - $SUDO $BOOTSTRAP/archlinux.sh + if [ "$DEBUG" = 1 ] ; then + echo "Bootstrapping dependencies for Archlinux..." + $SUDO $BOOTSTRAP/archlinux.sh + else + echo "Please use pacman to install letsencrypt packages:" + echo "# pacman -S letsencrypt letsencrypt-nginx letsencrypt-apache letshelp-letsencrypt" + echo + echo "If you would like to use the virtualenv way, please run the script again with the" + echo "--debug flag." + exit 1 + fi elif [ -f /etc/manjaro-release ] ; then ExperimentalBootstrap "Manjaro Linux" manjaro.sh "$SUDO" elif [ -f /etc/gentoo-release ] ; then From 27de932747f040375b18b16d3d4c26d42d3a45b7 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Sat, 21 Nov 2015 10:40:20 +0800 Subject: [PATCH 2/2] letsencrypt-auto: Remove nginx plugin and letshelp to keep the same behavior as the virtualenv way --- letsencrypt-auto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt-auto b/letsencrypt-auto index 64af92ebe..083de58c4 100755 --- a/letsencrypt-auto +++ b/letsencrypt-auto @@ -131,7 +131,7 @@ then $SUDO $BOOTSTRAP/archlinux.sh else echo "Please use pacman to install letsencrypt packages:" - echo "# pacman -S letsencrypt letsencrypt-nginx letsencrypt-apache letshelp-letsencrypt" + echo "# pacman -S letsencrypt letsencrypt-apache" echo echo "If you would like to use the virtualenv way, please run the script again with the" echo "--debug flag."