Add the quiet switch to the certbot command

It sends some messages to stderr otherwise

```
  -q, --quiet           Silence all output except errors. Useful for
                        automation via cron. Implies --non-interactive.
                        (default: False)
```
This commit is contained in:
Greg Karékinian 2019-06-19 11:10:13 +02:00
parent d879eb88b1
commit 6f98d07942

View File

@ -90,5 +90,5 @@ cron "certbot" do
hour "0,12"
minute 0
mailto "ops@kosmos.org"
command "cronic /usr/bin/certbot renew"
command "cronic /usr/bin/certbot renew -q"
end