diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-05-20 21:16:26 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-05-20 21:16:26 +0000 |
commit | 6080784f5eb8bcae13436b3651726e91110d482e (patch) | |
tree | 6508110f0780c0396253b81de45349cfa8d44658 /packages/havp.xml | |
parent | d97ba517bb20251fb3f542ca097dbe54c6b74ccd (diff) | |
download | pfsense-packages-6080784f5eb8bcae13436b3651726e91110d482e.tar.gz pfsense-packages-6080784f5eb8bcae13436b3651726e91110d482e.tar.bz2 pfsense-packages-6080784f5eb8bcae13436b3651726e91110d482e.zip |
Adding clamav and havp packages.
Submitted-by: Rajkumar S <raj_AT_linuxense.com>
Diffstat (limited to 'packages/havp.xml')
-rw-r--r-- | packages/havp.xml | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/packages/havp.xml b/packages/havp.xml new file mode 100644 index 00000000..8f278a4a --- /dev/null +++ b/packages/havp.xml @@ -0,0 +1,109 @@ +<packagegui> + <name>havp</name> + <version>0.1</version> + <title>Havp: Settings</title> + <include_file>/usr/local/pkg/havp.inc</include_file> + + <menu> + <name>HAVP</name> + <section>Services</section> + <tooltiptext>Modify HAVP settings.</tooltiptext> + <url>/pkg_edit.php?xml=havp.xml&act=edit&id=0</url> + <configfile>havp.xml</configfile> + </menu> + + <service> + <name>havp</name> + <rcfile>/usr/local/etc/rc.d/havp.sh</rcfile> + </service> + + <tabs> + <tab> + <text>Settings</text> + <url>/pkg_edit.php?xml=havp.xml&act=edit&id=0</url> + <active/> + </tab> + <tab> + <text>Whitelist</text> + <url>/pkg.php?xml=havp_whitelist.xml</url> + </tab> + <tab> + <text>Blacklist</text> + <url>/pkg.php?xml=havp_blacklist.xml</url> + </tab> + </tabs> + + <additional_files_needed> + <prefix>/usr/local/pkg/</prefix> + <chmod>0755</chmod> + <item>http://agni.linuxense.com/packages/config/havp.inc</item> + </additional_files_needed> + <additional_files_needed> + <prefix>/usr/local/pkg/</prefix> + <chmod>0755</chmod> + <item>http://agni.linuxense.com/packages/config/havp_whitelist.xml</item> + </additional_files_needed> + <additional_files_needed> + <prefix>/usr/local/pkg/</prefix> + <chmod>0755</chmod> + <item>http://agni.linuxense.com/packages/config/havp_blacklist.xml</item> + </additional_files_needed> + + <configpath>['installedpackages']['havp]['config']</configpath> + + <fields> + <field> + <fielddescr>Server Number</fielddescr> + <fieldname>servernumber</fieldname> + <description>Specify how many servers (child processes) are simultaneously listening on port PORT for a connection. Minimum value should be the peak requests-per-second expected + 5 for headroom.</description> + <type>input</type> + </field> + <field> + <fielddescr>Max Server Number</fielddescr> + <fieldname>maxservers</fieldname> + <description>This is the hard limit for concurrent requests processed.</description> + <type>input</type> + </field> + <field> + <fielddescr>Transparent?</fielddescr> + <fieldname>transparent</fieldname> + <description>Run HAVP as transparent Proxy?</description> + <type>checkbox</type> + <value>yes</value> + </field> + <field> + <fielddescr>Port</fielddescr> + <fieldname>port</fieldname> + <description>Port HAVP is listening on.</description> + <type>input</type> + <value>8080</value> + </field> + <field> + <fielddescr>Bind Address</fielddescr> + <fieldname>bind_address</fieldname> + <description>IP address that HAVP listens on. Leave it empty to bind all addresses.</description> + <type>input</type> + </field> + <field> + <fielddescr>Source Address</fielddescr> + <fieldname>source_address</fieldname> + <description>IP address used for sending outbound packets. Let it be undefined if you want OS to handle right address.</description> + <type>input</type> + </field> + <field> + <fielddescr>Range Requests</fielddescr> + <fieldname>range</fieldname> + <description> Allow HTTP Range Requests?</description> + <type>checkbox</type> + <value>yes</value> + </field> + </fields> + + <custom_php_install_command> havp_install_command(); </custom_php_install_command> + <custom_php_deinstall_command> havp_deinstall_command(); </custom_php_deinstall_command> + <custom_delete_php_command> sync_package_havp(); </custom_delete_php_command> + <custom_php_resync_config_command> sync_package_havp(); </custom_php_resync_config_command> + <custom_add_php_command> sync_package_havp(); </custom_add_php_command> + +</packagegui> + |