diff options
author | Luar Roji <luar@scrapinghub.com> | 2014-02-27 13:15:20 -0800 |
---|---|---|
committer | Luar Roji <luar@scrapinghub.com> | 2014-02-27 13:15:20 -0800 |
commit | ee8adaa054b094fb0ced6934bf768a2643a01d7a (patch) | |
tree | 1bed16f2aab84cd17918bed684ba9659f48cbea6 /config/haproxy-devel | |
parent | 464a48605e7e8edfe0b2476ac66deb23e937dc3f (diff) | |
download | pfsense-packages-ee8adaa054b094fb0ced6934bf768a2643a01d7a.tar.gz pfsense-packages-ee8adaa054b094fb0ced6934bf768a2643a01d7a.tar.bz2 pfsense-packages-ee8adaa054b094fb0ced6934bf768a2643a01d7a.zip |
Fixes problem stopping haproxy
We've experienced problems stopping haproxy from web gui. From command line it said that haproxy was not found.
I found that the path to the executable was not right, and fixed it.
Diffstat (limited to 'config/haproxy-devel')
-rw-r--r-- | config/haproxy-devel/haproxy.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/haproxy-devel/haproxy.inc b/config/haproxy-devel/haproxy.inc index d039b55a..81de89f1 100644 --- a/config/haproxy-devel/haproxy.inc +++ b/config/haproxy-devel/haproxy.inc @@ -189,7 +189,7 @@ function haproxy_custom_php_install_command() { name="haproxy" rcvar=`set_rcvar` -command="/usr/local/bin/haproxy" +command="/usr/pbi/haproxy-devel-`uname -m`/sbin/haproxy" haproxy_enable=\${haproxy-"YES"} start_cmd="haproxy_start" |