2015-08-27 18:04:30 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
CURRENT_CONFIG_HASH=$(sha1sum /etc/haproxy/haproxy.cfg | cut -f1 -d' ')
|
2015-10-01 07:43:18 +00:00
|
|
|
NEW_CONFIG_HASH=$(sha1sum /var/lib/kolla/config_files/haproxy.cfg | cut -f1 -d' ')
|
2015-08-27 18:04:30 -07:00
|
|
|
|
|
|
|
if [[ $CURRENT_CONFIG_HASH != $NEW_CONFIG_HASH ]]; then
|
|
|
|
changed=changed
|
2015-10-01 07:43:18 +00:00
|
|
|
python /usr/local/bin/kolla_set_configs
|
2015-08-27 18:04:30 -07:00
|
|
|
/usr/sbin/haproxy -f /etc/haproxy/haproxy.cfg -p /run/haproxy.pid -sf $(cat /run/haproxy.pid)
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo $changed
|