From 2e489f4470468591b9aae5ebf02f35277c6ec95c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Fri, 21 Aug 2020 16:04:01 +0200 Subject: [PATCH] adding #37 --- app/Commands/LetsEncryptInstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Commands/LetsEncryptInstallCommand.php b/app/Commands/LetsEncryptInstallCommand.php index f54a0c6..e4e74e7 100644 --- a/app/Commands/LetsEncryptInstallCommand.php +++ b/app/Commands/LetsEncryptInstallCommand.php @@ -50,7 +50,7 @@ class LetsEncryptInstallCommand extends Command $output = []; $this->info('LetsEncrypt adding ppa for certbot...'); exec('add-apt-repository -y universe 2>&1', $output); - exec('add-apt-repository -y ppa:certbot/certbot 2>&1', $output); + exec('add-apt-repository -y -r ppa:certbot/certbot 2>&1', $output); // @TODO apt add a Warning for no good, in a later version output will be scanned for helpfull infos $this->line(implode("\n", Install::filterAptMessages($output)));