Files
tb 5700a1c5b3 Update to haproxy 3.0.0
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
2024-06-03 21:36:14 +00:00

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