aboutsummaryrefslogtreecommitdiffstats
path: root/config/phpservice
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2010-12-10 12:48:58 +0000
committerErmal <eri@pfsense.org>2010-12-10 12:48:58 +0000
commit9a77cafd7e400640a855f8f5112dd59c93af92a7 (patch)
treeaa2ee03075b503a42890763f82aa2593a64fca8a /config/phpservice
parent806db0240fa060b9ceb197fbc636be8bf916d95c (diff)
downloadpfsense-packages-9a77cafd7e400640a855f8f5112dd59c93af92a7.tar.gz
pfsense-packages-9a77cafd7e400640a855f8f5112dd59c93af92a7.tar.bz2
pfsense-packages-9a77cafd7e400640a855f8f5112dd59c93af92a7.zip
Fix all this packages from their copy/paste legacy. Mostly protect poorly choosen function names with function_exists.
Diffstat (limited to 'config/phpservice')
-rw-r--r--config/phpservice/phpservice.inc48
1 files changed, 25 insertions, 23 deletions
diff --git a/config/phpservice/phpservice.inc b/config/phpservice/phpservice.inc
index d346713a..6236d0b6 100644
--- a/config/phpservice/phpservice.inc
+++ b/config/phpservice/phpservice.inc
@@ -31,32 +31,34 @@
POSSIBILITY OF SUCH DAMAGE.
*/
-function pkg_is_service_running($servicename)
-{
- exec("/bin/ps ax | awk '{ print $5 }'", $psout);
- array_shift($psout);
- foreach($psout as $line) {
- $ps[] = trim(array_pop(explode(' ', array_pop(explode('/', $line)))));
- }
- if(is_service_running($servicename, $ps) or is_process_running($servicename) ) {
- return true;
- }
- else {
- return false;
- }
+if (!function_exists("pkg_is_service_running")) {
+ function pkg_is_service_running($servicename)
+ {
+ exec("/bin/ps ax | awk '{ print $5 }'", $psout);
+ array_shift($psout);
+ foreach($psout as $line) {
+ $ps[] = trim(array_pop(explode(' ', array_pop(explode('/', $line)))));
+ }
+ if(is_service_running($servicename, $ps) or is_process_running($servicename) ) {
+ return true;
+ }
+ else {
+ return false;
+ }
+ }
}
-function byte_convert( $bytes ) {
-
- if ($bytes<=0)
- return '0 Byte';
+if (!function_exists("byte_convert")) {
+ function byte_convert( $bytes ) {
+ if ($bytes<=0)
+ return '0 Byte';
- $convention=1000; //[1000->10^x|1024->2^x]
- $s=array('B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB');
- $e=floor(log($bytes,$convention));
- return round($bytes/pow($convention,$e),2).' '.$s[$e];
+ $convention=1000; //[1000->10^x|1024->2^x]
+ $s=array('B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB');
+ $e=floor(log($bytes,$convention));
+ return round($bytes/pow($convention,$e),2).' '.$s[$e];
+ }
}
-
function phpservice_sync_package_php()
{
@@ -223,4 +225,4 @@ function phpservice_deinstall_command()
}
-?> \ No newline at end of file
+?>