mirror of
https://github.com/linuxserver/docker-swag.git
synced 2025-05-01 22:26:02 -04:00
7 lines
319 B
Text
Executable file
7 lines
319 B
Text
Executable file
#!/usr/bin/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
# Migrate existing renewal confs with old paths from /etc/letsencrypt to /config/etc/letsencrypt
|
|
if ls /config/etc/letsencrypt/renewal/*.conf >/dev/null 2>&1; then
|
|
sed -i 's| /etc/letsencrypt| /config/etc/letsencrypt|' /config/etc/letsencrypt/renewal/*.conf
|
|
fi
|