diff options
author | doktornotor <notordoktor@gmail.com> | 2015-08-25 09:15:00 +0200 |
---|---|---|
committer | doktornotor <notordoktor@gmail.com> | 2015-08-25 09:15:00 +0200 |
commit | c37cd891c3149cb0a0acd4b16f3f998e1916a707 (patch) | |
tree | b750ad917ca6518fdecd36831bba241ea5e4c2cf | |
parent | 5157df459debfddcb0d8a17eaf0a07a6651247ea (diff) | |
download | pfsense-packages-c37cd891c3149cb0a0acd4b16f3f998e1916a707.tar.gz pfsense-packages-c37cd891c3149cb0a0acd4b16f3f998e1916a707.tar.bz2 pfsense-packages-c37cd891c3149cb0a0acd4b16f3f998e1916a707.zip |
Remove useless remount calls
These are dealt with by install_package() from pkg-utils.inc.
-rw-r--r-- | config/haproxy/haproxy.inc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/config/haproxy/haproxy.inc b/config/haproxy/haproxy.inc index 6d4ba0e5..7ededa97 100644 --- a/config/haproxy/haproxy.inc +++ b/config/haproxy/haproxy.inc @@ -73,7 +73,6 @@ function haproxy_custom_php_deinstall_command() { function haproxy_custom_php_install_command() { global $g, $config; - conf_mount_rw(); $haproxy = <<<EOD #!/bin/sh @@ -228,8 +227,6 @@ EOD; write_config(); } - conf_mount_ro(); - exec("/usr/local/etc/rc.d/haproxy.sh start"); } |