ansible-roles/evoacme/files/certbot.cron

7 lines
119 B
Plaintext
Raw Normal View History

#!/bin/bash
ls /etc/letsencrypt/*.crt|sed 's/.crt//'|while read vhost;
do
evoacme $(basename $vhost)>/dev/null
done