aboutsummaryrefslogtreecommitdiffstats
path: root/config/phpservice/phpservice.inc
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2010-11-09 15:16:14 -0500
committerjim-p <jimp@pfsense.org>2010-11-09 15:16:14 -0500
commitc70b574412951f52e30dcc4b1bf251c5d2e47819 (patch)
treeba801064dffda50b80511792e592a7e6faaf1a26 /config/phpservice/phpservice.inc
parente284125663f36249ac6ee8c16e5b09878a035307 (diff)
downloadpfsense-packages-c70b574412951f52e30dcc4b1bf251c5d2e47819.tar.gz
pfsense-packages-c70b574412951f52e30dcc4b1bf251c5d2e47819.tar.bz2
pfsense-packages-c70b574412951f52e30dcc4b1bf251c5d2e47819.zip
Unique function names
Diffstat (limited to 'config/phpservice/phpservice.inc')
-rw-r--r--config/phpservice/phpservice.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/config/phpservice/phpservice.inc b/config/phpservice/phpservice.inc
index 421ac94d..d346713a 100644
--- a/config/phpservice/phpservice.inc
+++ b/config/phpservice/phpservice.inc
@@ -31,7 +31,7 @@
POSSIBILITY OF SUCH DAMAGE.
*/
-function pkg_is_service_running($servicename)
+function pkg_is_service_running($servicename)
{
exec("/bin/ps ax | awk '{ print $5 }'", $psout);
array_shift($psout);
@@ -153,7 +153,7 @@ function phpservice_sync_package_php()
}
-function php_sync_package()
+function phpservice_sync_package()
{
global $config;
@@ -162,7 +162,7 @@ function php_sync_package()
}
-function php_install_command()
+function phpservice_install_command()
{
global $config;
@@ -194,7 +194,7 @@ function php_install_command()
)
);
- php_sync_package();
+ phpservice_sync_package();
//$handle = popen("/usr/local/etc/rc.d/phpservice.sh start", "r");
//pclose($handle);
@@ -208,7 +208,7 @@ function php_install_command()
}
-function deinstall_command()
+function phpservice_deinstall_command()
{
conf_mount_rw();