Browse Source

adding #37

release/0.2
Björn 4 years ago
parent
commit
2e489f4470
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/Commands/LetsEncryptInstallCommand.php

+ 1
- 1
app/Commands/LetsEncryptInstallCommand.php View File

@ -50,7 +50,7 @@ class LetsEncryptInstallCommand extends Command
$output = []; $output = [];
$this->info('LetsEncrypt adding ppa for certbot...'); $this->info('LetsEncrypt adding ppa for certbot...');
exec('add-apt-repository -y universe 2>&1', $output); 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 // @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))); $this->line(implode("\n", Install::filterAptMessages($output)));


Loading…
Cancel
Save