mirror of
https://github.com/nginx-proxy/docker-letsencrypt-nginx-proxy-companion
synced 2024-12-04 18:48:20 +01:00
a9c91da07e
As of Alpine 3.4 the procps package does not provide pkill. Busybox's pkill usage is slightly different.
5 lines
149 B
Bash
Executable File
5 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Works with either procps pkill or busybox pkill
|
|
pkill -f -SIGUSR1 /app/letsencrypt_service || pkill -USR1 -f /app/letsencrypt_service
|