From 76b4b41c4e59475bedae71fb3a5e4bcc462d7bad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Sun, 9 Aug 2020 18:31:38 +0200 Subject: [PATCH] adding smaller bugfixes, change letsencrpty --- app/Commands/LetsEncryptInstallCommand.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Commands/LetsEncryptInstallCommand.php b/app/Commands/LetsEncryptInstallCommand.php index dd2ba1e..311cd90 100644 --- a/app/Commands/LetsEncryptInstallCommand.php +++ b/app/Commands/LetsEncryptInstallCommand.php @@ -42,21 +42,21 @@ class LetsEncryptInstallCommand extends Command $output = []; exec('apt update 2>&1', $output); - exec('apt install software-properties-common 2>&1', $output); + exec('apt install -y software-properties-common 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))); $output = []; - exec('add-apt-repository universe 2>&1', $output); - exec('add-apt-repository ppa:certbot/certbot 2>&1', $output); + exec('add-apt-repository -y universe 2>&1', $output); + exec('add-apt-repository -y 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))); $output = []; exec('apt update 2>&1', $output); - exec('apt install certbot python3-certbot-nginx 2>&1', $output); + exec('apt install -y certbot python3-certbot-nginx 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)));