mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
5700a1c5b3
Add a patch to enable ChaCha20-Poly1305 since in-place decryption was fixed. This way machines without aesni support in libcrypto (in particular arm64) work out of the box and we get testing until libressl is bumped to 4.0.0. https://github.com/haproxy/haproxy/issues/2569 https://github.com/haproxy/haproxy/blob/v3.0.0/CHANGELOG From Lucas Gabriel Vuotto Drop maintainer per request
16 lines
293 B
Bash
16 lines
293 B
Bash
#!/bin/ksh
|
|
|
|
daemon="${TRUEPREFIX}/sbin/haproxy"
|
|
daemon_flags="-f ${SYSCONFDIR}/haproxy/haproxy.cfg"
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
# rc_reload() appends '-sf ...'
|
|
pexp="${daemon}${daemon_flags:+ ${daemon_flags}}.*"
|
|
|
|
rc_reload() {
|
|
${daemon} ${daemon_flags} -sf $(cat /var/run/haproxy.pid)
|
|
}
|
|
|
|
rc_cmd $1
|