diff options
author | doktornotor <notordoktor@gmail.com> | 2015-08-25 09:12:02 +0200 |
---|---|---|
committer | doktornotor <notordoktor@gmail.com> | 2015-08-25 09:12:02 +0200 |
commit | 62ba5b50249be65617f80f138778aa7fcda73a93 (patch) | |
tree | 1ddfa8b1ca5cb31da75bd6c896e49248e6dc98f3 /config | |
parent | d3ff9f1b84659194b1d513071508a46a50feefb9 (diff) | |
download | pfsense-packages-62ba5b50249be65617f80f138778aa7fcda73a93.tar.gz pfsense-packages-62ba5b50249be65617f80f138778aa7fcda73a93.tar.bz2 pfsense-packages-62ba5b50249be65617f80f138778aa7fcda73a93.zip |
Remove useless remount calls
These are dealt with by install_package() from pkg-utils.inc.
Diffstat (limited to 'config')
-rw-r--r-- | config/haproxy-devel/pkg/haproxy.inc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/config/haproxy-devel/pkg/haproxy.inc b/config/haproxy-devel/pkg/haproxy.inc index de1963b0..e9bdbf47 100644 --- a/config/haproxy-devel/pkg/haproxy.inc +++ b/config/haproxy-devel/pkg/haproxy.inc @@ -380,10 +380,6 @@ function haproxy_custom_php_install_command() { $static_output .= "HAProxy, running haproxy_custom_php_install_command()\n"; update_output_window($static_output); - $static_output .= "HAProxy, conf_mount_rw\n"; - update_output_window($static_output); - conf_mount_rw(); - $pf_version=substr(trim(file_get_contents("/etc/version")),0,3); if ($pf_version == "2.1" || $pf_version == "2.2") $haproxy_binary = "/usr/pbi/haproxy-devel-" . php_uname("m") . "/sbin/haproxy"; @@ -488,10 +484,6 @@ EOD; require_once('haproxy_upgrade_config.inc'); haproxy_upgrade_config(); - $static_output .= "HAProxy, conf_mount_ro\n"; - update_output_window($static_output); - conf_mount_ro(); - $static_output .= "HAProxy, starting haproxy (if previously enabled)\n"; update_output_window($static_output); haproxy_check_run(1); |