Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnselm Levskaya <levskaya@gmail.com>2015-12-03 10:06:11 +0300
committerAnselm Levskaya <levskaya@gmail.com>2015-12-03 10:06:11 +0300
commit54c74a6d2fa6cc134676758142075db43f738b2a (patch)
treeece1c7225e61fff8dad9762e84cd18f784688557 /letsencrypt-auto
parentfe422cb87ba68533c593e47dddb87f709c0fb2ce (diff)
fix sudo issue on amazon linux instance with letsencrypt-auto
the letsencrypt-auto script was missing the sudo parameter on call to ExperimentalBootstrap for amazon linux. also added comment to mac entry to clarify why it lacks the parameter
Diffstat (limited to 'letsencrypt-auto')
-rwxr-xr-xletsencrypt-auto4
1 files changed, 2 insertions, 2 deletions
diff --git a/letsencrypt-auto b/letsencrypt-auto
index c88028b72..44c71883c 100755
--- a/letsencrypt-auto
+++ b/letsencrypt-auto
@@ -147,9 +147,9 @@ then
elif uname | grep -iq FreeBSD ; then
ExperimentalBootstrap "FreeBSD" freebsd.sh "$SUDO"
elif uname | grep -iq Darwin ; then
- ExperimentalBootstrap "Mac OS X" mac.sh
+ ExperimentalBootstrap "Mac OS X" mac.sh # homebrew doesn't normally run as root
elif grep -iq "Amazon Linux" /etc/issue ; then
- ExperimentalBootstrap "Amazon Linux" _rpm_common.sh
+ ExperimentalBootstrap "Amazon Linux" _rpm_common.sh "$SUDO"
else
echo "Sorry, I don't know how to bootstrap Let's Encrypt on your operating system!"
echo