aboutsummaryrefslogtreecommitdiffstats
path: root/config/phpservice
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2015-08-11 11:53:10 -0300
committerRenato Botelho <renato@netgate.com>2015-08-11 11:53:10 -0300
commit3faf4d8c63981742cf7d6a99c41c9e39d815db0d (patch)
tree655166f28159c9630a5c13e078f7aa54411cd6c7 /config/phpservice
parentc0ab8887bdfff3064351e598840bdce35a174fbd (diff)
parent0767305b6d3ba9725d138d6cd8d65fe610e85201 (diff)
downloadpfsense-packages-3faf4d8c63981742cf7d6a99c41c9e39d815db0d.tar.gz
pfsense-packages-3faf4d8c63981742cf7d6a99c41c9e39d815db0d.tar.bz2
pfsense-packages-3faf4d8c63981742cf7d6a99c41c9e39d815db0d.zip
Merge pull request #989 from doktornotor/patch-2
Diffstat (limited to 'config/phpservice')
-rw-r--r--config/phpservice/phpservice.inc11
1 files changed, 3 insertions, 8 deletions
diff --git a/config/phpservice/phpservice.inc b/config/phpservice/phpservice.inc
index 6236d0b6..ec2b9bef 100644
--- a/config/phpservice/phpservice.inc
+++ b/config/phpservice/phpservice.inc
@@ -67,8 +67,7 @@ function phpservice_sync_package_php()
if($config['installedpackages']['phpservice']['config'] != "") {
conf_mount_rw();
- config_unlock();
-
+
$tmp = "<?php\n";
$tmp .= "\n";
$tmp .= "// Set time limit to indefinite execution\n";
@@ -169,7 +168,6 @@ function phpservice_install_command()
global $config;
conf_mount_rw();
- config_lock();
if (!is_dir('/usr/local/www/packages/')) {
exec("mkdir /usr/local/www/packages/");
@@ -205,8 +203,7 @@ function phpservice_install_command()
//}
conf_mount_ro();
- config_unlock();
-
+
}
@@ -214,15 +211,13 @@ function phpservice_deinstall_command()
{
conf_mount_rw();
- config_lock();
$handle = popen("/usr/local/etc/rc.d/phpservice.sh stop", "r");
unlink_if_exists("/usr/local/pkg/phpservice.xml");
unlink_if_exists("/usr/local/pkg/phpservice.inc");
unlink_if_exists("/usr/local/www/phpservice.inc");
unlink_if_exists("/usr/local/etc/rc.d/phpservice.sh");
conf_mount_ro();
- config_unlock();
-
+
}
?>