Only renew certificates if we're using Let's Encrypt

master
コミット 87c0ed086a
  1. 4
      certbot-renew.sh

@ -1,3 +1,5 @@
#!/bin/bash
certbot renew
if [ "${USE_LETSENCRYPT,,}" == "yes" -o "${USE_LETSENCRYPT,,}" == "true" ]; then
certbot renew
fi

読み込み中…
キャンセル
保存