mirror of
				https://github.com/linuxserver/docker-swag.git
				synced 2025-10-31 21:17:42 +09:00 
			
		
		
		
	Fix renewal post hook
This commit is contained in:
		| @@ -336,6 +336,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 | ||||
|  | ||||
| ## Versions | ||||
|  | ||||
| * **25.03.23:** - Fix renewal post hook. | ||||
| * **10.03.23:** - Cleanup unused csr and keys folders. See [certbot 2.3.0 release notes](https://github.com/certbot/certbot/releases/tag/v2.3.0). | ||||
| * **09.03.23:** - Add Google Domains DNS support, `google-domains`. | ||||
| * **02.03.23:** - Set permissions on crontabs during init. | ||||
|   | ||||
| @@ -154,6 +154,7 @@ app_setup_block: | | ||||
|  | ||||
| # changelog | ||||
| changelogs: | ||||
|   - { date: "25.03.23:", desc: "Fix renewal post hook." } | ||||
|   - { date: "10.03.23:", desc: "Cleanup unused csr and keys folders. See [certbot 2.3.0 release notes](https://github.com/certbot/certbot/releases/tag/v2.3.0)." } | ||||
|   - { date: "09.03.23:", desc: "Add Google Domains DNS support, `google-domains`." } | ||||
|   - { date: "02.03.23:", desc: "Set permissions on crontabs during init." } | ||||
|   | ||||
| @@ -5,7 +5,7 @@ | ||||
| . /config/.donoteditthisfile.conf | ||||
|  | ||||
| if [[ ! "${ORIGVALIDATION}" = "dns" ]] && [[ ! "${ORIGVALIDATION}" = "duckdns" ]]; then | ||||
|     if pgrep -f "s6-supervise nginx" >/dev/null; then | ||||
|     if pgrep -f "s6-supervise svc-nginx" >/dev/null; then | ||||
|         s6-svc -u /run/service/svc-nginx | ||||
|     fi | ||||
| else | ||||
|   | ||||
| @@ -41,6 +41,7 @@ lsiown -R abc:abc /config/etc/letsencrypt/renewal-hooks | ||||
| # replace nginx service location in renewal hooks | ||||
| find /config/etc/letsencrypt/renewal-hooks/ -type f -exec sed -i 's|/run/service/nginx|/run/service/svc-nginx|g' {} \; | ||||
| find /config/etc/letsencrypt/renewal-hooks/ -type f -exec sed -i 's|/var/run/s6/services/nginx|/run/service/svc-nginx|g' {} \; | ||||
| find /config/etc/letsencrypt/renewal-hooks/ -type f -exec sed -i 's|s6-supervise nginx|s6-supervise svc-nginx|g' {} \; | ||||
|  | ||||
| # create original config file if it doesn't exist, move non-hidden legacy file to hidden | ||||
| if [[ -f "/config/donoteditthisfile.conf" ]]; then | ||||
|   | ||||
		Reference in New Issue
	
	Block a user