mirror of
https://github.com/archlinux/aur.git
synced 2026-02-28 12:13:13 +01:00
10 lines
286 B
Bash
10 lines
286 B
Bash
#!/bin/sh
|
|
|
|
post_install() {
|
|
printf '==> %s\n' "The example config chroots HAProxy, meaning that logging to journald won't work."
|
|
printf ' %s\n' "Either disable chrooting, use rsyslog, or bind /run/systemd/journal/dev-log into the chroot."
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|