Compare commits

...

2 Commits

Author SHA1 Message Date
Mathieu Maret 662dc1c31b [script]getcert use wildcard cert 2022-09-22 15:51:03 +02:00
Mathieu Maret afbcf99932 [script] use grep -E instead of egrep 2022-09-22 15:50:16 +02:00
2 changed files with 10 additions and 5 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
nb_bk=$(sudo ls /var/lib/gitea/ | egrep ".*dump.*.zip" |wc -l)
nb_bk=$(sudo ls /var/lib/gitea/ | grep -E ".*dump.*.zip" |wc -l)
if [ $nb_bk != 0 ]; then
echo "EXISTING GITEA BACKUP!"
@ -9,7 +9,7 @@ fi
sudo -u gitea sh -c "cd ~gitea; gitea dump -c /etc/gitea/app.ini > /dev/null 2>&1"
backup_file=$(sudo ls /var/lib/gitea/ | egrep ".*dump.*.zip")
backup_file=$(sudo ls /var/lib/gitea/ | grep -E ".*dump.*.zip")
backup_file="/var/lib/gitea/"$backup_file
sudo mv $backup_file /tmp/
backup_file="/tmp/$(basename $backup_file)"

View File

@ -1,7 +1,12 @@
#!/bin/bash
/usr/bin/certbot certonly --agree-tos --quiet --renew-by-default --webroot -w /srv/http -d mathux.org --email mathieu@mathux.org
/usr/bin/certbot certonly --agree-tos --quiet --renew-by-default --webroot -w /srv/http/letsencrypt -d gitlab.mathux.org --email mathieu@mathux.org
/usr/bin/certbot certonly --agree-tos --quiet --renew-by-default --webroot -w /srv/http/letsencrypt -d git.mathux.org --email mathieu@mathux.org
#/usr/bin/certbot certonly --agree-tos --quiet --renew-by-default --webroot -w /srv/http -d mathux.org --email mathieu@mathux.org
#/usr/bin/certbot certonly --agree-tos --quiet --renew-by-default --webroot -w /srv/http/letsencrypt -d gitlab.mathux.org --email mathieu@mathux.org
#/usr/bin/certbot certonly --agree-tos --quiet --renew-by-default --webroot -w /srv/http/letsencrypt -d git.mathux.org --email mathieu@mathux.org
/usr/bin/certbot certonly --authenticator dns-gandi --dns-gandi-credentials /etc/letsencrypt/gandi.ini -d mathux.org -d \*.mathux.org --server https://acme-v02.api.letsencrypt.org/directory
# Emby its proxy served by apache
#/usr/bin/openssl pkcs12 -inkey /etc/letsencrypt/live/mathux.org-0001/privkey.pem -in /etc/letsencrypt/live/mathux.org-0001/fullchain.pem -export -out /etc/letsencrypt/live/mathux.org-0001/emby.pfx -passout pass:
#chown emby:emby /etc/letsencrypt/live/mathux.org-0001/emby.pfx
#/usr/bin/certbot certonly --agree-tos --quiet --renew-by-default --webroot -w /srv/http/letsencrypt -d air.mathux.org --email mathieu@mathux.org
#/usr/bin/certbot certonly --agree-tos --quiet --renew-by-default --webroot -w /lib/python3.6/site-packages/homeassistant/components/frontend/www_static/ -d home.mathux.org --email mathieu@mathux.org
#/usr/bin/certbot certonly --agree-tos --quiet --renew-by-default --webroot -w /lib/python3.6/site-packages/homeassistant/components/frontend/www_static/ -d lefevre.mathux.org --email mathieu@mathux.org