9df9ff9137
Implements: blueprint base-image Change-Id: I3e72db6d2f19fe45138758eb0821e27aa1c2542a
10 lines
233 B
Bash
Executable File
10 lines
233 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
# Allow haproxy to proxy any port if SELinux is in enforcing mode
|
|
# https://bugs.launchpad.net/tripleo/+bug/1339938
|
|
if [[ -x /usr/sbin/semanage ]]; then
|
|
setsebool -P haproxy_connect_any 1
|
|
fi
|