aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2007-03-22 21:07:51 +0000
committerScott Ullrich <sullrich@pfsense.org>2007-03-22 21:07:51 +0000
commite543074beba3064ac5d9a77660a210e00d0fc766 (patch)
tree319aa4afbb0c5d1034aa73a825ed28db3d89ed16
parente9b9d0ceda7db8fd793b5e397b4bbfc1c5cf0405 (diff)
downloadpfsense-packages-e543074beba3064ac5d9a77660a210e00d0fc766.tar.gz
pfsense-packages-e543074beba3064ac5d9a77660a210e00d0fc766.tar.bz2
pfsense-packages-e543074beba3064ac5d9a77660a210e00d0fc766.zip
Add phpsysinfo package Submitted-by: Perry via Forum
-rw-r--r--packages/phpsysinfo/phpsysinfo.inc187
-rw-r--r--packages/phpsysinfo/phpsysinfo.xml76
-rw-r--r--pkg_config.xml15
3 files changed, 277 insertions, 1 deletions
diff --git a/packages/phpsysinfo/phpsysinfo.inc b/packages/phpsysinfo/phpsysinfo.inc
new file mode 100644
index 00000000..d3c44873
--- /dev/null
+++ b/packages/phpsysinfo/phpsysinfo.inc
@@ -0,0 +1,187 @@
+<?php
+
+function phpsysinfo_install_deinstall() {
+
+ conf_mount_rw();
+ config_lock();
+ exec("cd /var/db/pkg/ && pkg_delete `ls | grep mbmon`");
+ exec("rm -d -R /usr/local/www/phpSysInfo");
+ conf_mount_ro();
+ config_unlock();
+}
+
+function phpsysinfo_install_config() {
+global $config, $g;
+
+ conf_mount_rw();
+ config_lock();
+
+ exec("cd ..");
+ exec("tar -xzvf /usr/local/pkg/phpSysInfo-2.5.3.tgz");
+
+
+ /* lines need in config.php */
+
+$default_lng = en;
+$default_template= pfSense;
+$hide_picklist = "false";
+$show_vhostname = "false";
+$sensor_program = '""';
+$show_mount_point = "false";
+$show_inodes = "false";
+$hide_mounts = "array()";
+$hide_fstypes = "array()";
+$loadbar = "false";
+$showerrors = "false";
+$temperatureformat = '"c-f"';
+
+$hide_picklist = $config['installedpackages']['phpsysinfo']['config'][0]['hidepicklist'];
+if($hide_picklist)
+$hide_picklist = "true";
+else
+$hide_picklist = "false";
+
+$sensor_program = $config['installedpackages']['phpsysinfo']['config'][0]['sensorprogram'];
+if($sensor_program)
+$sensor_program= "mbmon";
+else
+$sensor_program = '""';
+
+$show_mount_point = $config['installedpackages']['phpsysinfo']['config'][0]['showmountpoint'];
+if($show_mount_point)
+$show_mount_point = "true";
+else
+$show_mount_point = "false";
+
+$hide_fstypes = $config['installedpackages']['phpsysinfo']['config'][0]['hidefstypes'];
+if($hide_fstypes)
+$hide_fstypes = "$hide_fstypes";
+
+$show_inodes = $config['installedpackages']['phpsysinfo']['config'][0]['showinodes'];
+if($show_inodes)
+$show_inodes = "true";
+else
+$show_inodes = "false";
+
+$loadbar = $config['installedpackages']['phpsysinfo']['config'][0]['loadbar'];
+if($loadbar)
+$loadbar = "true";
+else
+$loadbar = "false";
+
+$showerrors = $config['installedpackages']['phpsysinfo']['config'][0]['showerrors'];
+if($showerrors)
+$showerrors = "true";
+else
+$showerrors = "false";
+
+
+$hf = fopen("/usr/local/www/phpSysInfo/config.php","w");
+if(!$hf) {
+log_error("could not open /usr/local/www/phpSysInfo/config.php for writing");
+exit;
+}
+
+fwrite($hf, '<?php');
+fwrite($hf, "\n");
+
+// webpath but not used
+fwrite($hf, '$webpath = "";');
+fwrite($hf, "\n");
+
+// define the default lang and template here
+fwrite($hf, '$default_lng=');
+fwrite($hf, "'");
+fwrite($hf, $default_lng);
+fwrite($hf, "'");
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+fwrite($hf, '$default_template=');
+fwrite($hf, "'");
+fwrite($hf, $default_template);
+fwrite($hf, "'");
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// hide language and template picklist
+// false = display picklist
+// true = do not display picklist
+fwrite($hf, '$hide_picklist = ');
+fwrite($hf, $hide_picklist);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// display the virtual host name and address
+// default is canonical host name and address
+fwrite($hf, '$show_vhostname = ');
+fwrite($hf, $show_vhostname);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// define the motherboard monitoring program here
+fwrite($hf, '$sensor_program = ');
+fwrite($hf, $sensor_program);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// show mount point
+fwrite($hf, '$show_mount_point = ');
+fwrite($hf, $show_mount_point);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// show bind
+fwrite($hf, '$show_bind = false;');
+fwrite($hf, "\n");
+
+// show inode usage
+fwrite($hf, '$show_inodes = ');
+fwrite($hf, $show_inodes);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// show inode usage
+fwrite($hf, '$hide_mounts = ');
+fwrite($hf, $hide_mounts);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// Hide filesystem typess. Example: 'tmpfs', 'usbfs'
+fwrite($hf, '$hide_fstypes = array(');
+fwrite($hf, $hide_fstypes);
+fwrite($hf, ');');
+fwrite($hf, "\n");
+
+// show a graph for current cpuload
+fwrite($hf, '$loadbar = ');
+fwrite($hf, $loadbar);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// e.g. $addpaths = array('/opt/bin', '/opt/sbin');
+fwrite($hf, '$addpaths = array();');
+fwrite($hf, "\n");
+
+// display error messages at the top of the page
+fwrite($hf, '$showerrors = ');
+fwrite($hf, $showerrors);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// format in which temperature is displayed
+fwrite($hf, '$temperatureformat = ');
+fwrite($hf, $temperatureformat);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// The end of the config file
+fwrite($hf, '?>');
+fwrite($hf, "\n");
+
+fclose($hf);
+ conf_mount_ro();
+ config_unlock();
+
+}
+?> \ No newline at end of file
diff --git a/packages/phpsysinfo/phpsysinfo.xml b/packages/phpsysinfo/phpsysinfo.xml
new file mode 100644
index 00000000..cd8c1b00
--- /dev/null
+++ b/packages/phpsysinfo/phpsysinfo.xml
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<packagegui>
+ <name>phpsysinfo</name>
+ <version>1.0</version>
+ <title>phpsysinfo</title>
+ <menu>
+ <name>phpsysinfo</name>
+ <tooltiptext></tooltiptext>
+ <section>Status</section>
+ <url>/pkg_edit.php?xml=phpsysinfo.xml&amp;id=0</url>
+ </menu>
+ <tabs>
+ <tab>
+ <text>phpsysinfo</text>
+ <url>/pkg_edit.php?xml=phpsysinfo.xml&amp;id=0</url>
+ <active/>
+ </tab>
+ <tab>
+ <text>Access phpsysinfo</text>
+ <url>/phpSysInfo</url>
+ </tab>
+ </tabs>
+ <aftersaveredirect>/pkg_edit.php?xml=phpsysinfo.xml&amp;id=0</aftersaveredirect>
+ <additional_files_needed>
+ <prefix>/usr/local/pkg/</prefix>
+ <chmod>0644</chmod>
+ <item>http://http://www.pfsense.com/packages/config/phpsysinfo/phpsysinfo.inc</item>
+ </additional_files_needed>
+ <additional_files_needed>
+ <prefix>/usr/local/pkg/</prefix>
+ <chmod>0644</chmod>
+ <item>http://http://www.pfsense.com/packages/ALL/phpsysinfo.tgz</item>
+ </additional_files_needed>
+ <custom_php_install_command>phpsysinfo_install_config();</custom_php_install_command>
+ <custom_php_deinstall_command>phpsysinfo_install_deinstall();</custom_php_deinstall_command>
+ <custom_php_resync_config_command>phpsysinfo_install_config();</custom_php_resync_config_command>
+ <include_file>/usr/local/pkg/phpsysinfo.inc</include_file>
+ <fields>
+ <field>
+ <fieldname>hidepicklist</fieldname>
+ <fielddescr>Hide picklist</fielddescr>
+ <description>Hide language and template picklist</description>
+ <type>checkbox</type>
+ </field>
+ <field>
+ <fieldname>sensorprogram</fieldname>
+ <fielddescr>Show mbmon</fielddescr>
+ <description>Define the motherboard monitoring program here. Note that not all motherboards are supported and some only partly.</description>
+ <type>checkbox</type>
+ </field>
+ <field>
+ <fieldname>showmountpoint</fieldname>
+ <fielddescr>Show mount point</fielddescr>
+ <description>Show mount point</description>
+ <type>checkbox</type>
+ </field>
+ <field>
+ <fieldname>showinodes</fieldname>
+ <fielddescr>Show inodes</fielddescr>
+ <description>Show inode usage</description>
+ <type>checkbox</type>
+ </field>
+ <field>
+ <fieldname>loadbar</fieldname>
+ <fielddescr>Show loadbar</fielddescr>
+ <description>Show a graph for current cpuload</description>
+ <type>checkbox</type>
+ </field>
+ <field>
+ <fieldname>showerrors</fieldname>
+ <fielddescr>Show errors</fielddescr>
+ <description>Display error messages at the top of the page. Note that vmstat is added in 1.0.1-SNAPSHOT-03-15-2007 and later</description>
+ <type>checkbox</type>
+ </field>
+ </fields>
+</packagegui>
diff --git a/pkg_config.xml b/pkg_config.xml
index bb391639..ff9202a0 100644
--- a/pkg_config.xml
+++ b/pkg_config.xml
@@ -3,7 +3,20 @@
<!-- $Id$ -->
<pfsensepkgs>
<packages>
- <package>
+ <package>
+ <name>phpSysInfo</name>
+ <website>http://phpsysinfo.sourceforge.net/</website>
+ <descr>PHPSysInfo is a customizable PHP Script that parses /proc, and formats information nicely. It will display information about system facts like Uptime, CPU, Memory, PCI devices, SCSI devices, IDE devices, Network adapters, Disk usage, and more.</descr>
+ <category>System</category>
+ <version>2.5.3</version>
+ <status>Beta</status>
+ <required_version>1.0</required_version>
+ <depends_on_package_base_url>http://www.pfsense.com/packages/ALL</depends_on_package_base_url>
+ <depends_on_package>mbmon-205_3.tbz</depends_on_package>
+ <config_file>http://www.pfsense.com/packages/phpsysinfo/phpsysinfo.xml</config_file>
+ <configurationfile>phpsysinfo.xml</configurationfile>
+ </package>
+ <package>
<name>dns-server</name>
<descr>pfSense version of TinyDNS which features failover host support</descr>
<website>http://cr.yp.to/djbdns.html</website>