diff options
author | Chris Buechler <cmb@pfsense.org> | 2014-05-22 19:45:28 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2014-05-22 19:45:28 -0500 |
commit | 8ba84ead554bffa9cc697a2989be196b06c1b0cd (patch) | |
tree | 288b57e1e8550618d8ad52e999a01262fb8007df /config/jailctl/jailctl_settings.xml | |
parent | 8524a8fb7596aaa1f3dd4bf17ce2e81f7ba79ac9 (diff) | |
download | pfsense-packages-8ba84ead554bffa9cc697a2989be196b06c1b0cd.tar.gz pfsense-packages-8ba84ead554bffa9cc697a2989be196b06c1b0cd.tar.bz2 pfsense-packages-8ba84ead554bffa9cc697a2989be196b06c1b0cd.zip |
move jail package bits to archive
Diffstat (limited to 'config/jailctl/jailctl_settings.xml')
-rw-r--r-- | config/jailctl/jailctl_settings.xml | 118 |
1 files changed, 0 insertions, 118 deletions
diff --git a/config/jailctl/jailctl_settings.xml b/config/jailctl/jailctl_settings.xml deleted file mode 100644 index ae09adaf..00000000 --- a/config/jailctl/jailctl_settings.xml +++ /dev/null @@ -1,118 +0,0 @@ -<?xml version="1.0" encoding="utf-8" ?> -<!DOCTYPE packagegui SYSTEM "./schema/packages.dtd"> -<?xml-stylesheet type="text/xsl" href="./xsl/package.xsl"?> -<packagegui> - <description>Jail management</description> - <requirements>Built world in /usr/obj</requirements> - <faq>Currently there are no FAQ items provided.</faq> - <name>pfJailctl_Settings</name> - <version>0.1</version> - <title>Jails: Settings</title> - <!-- configpath gets expanded out automatically and config items will be - stored in that location --> - <configpath>['installedpackages']['$packagename']['config']</configpath> - - <tabs> - <tab> - <text>Jails</text> - <url>/pkg.php?xml=jailctl.xml</url> - </tab> - <tab> - <text>Global settings</text> - <url>/pkg_edit.php?xml=jailctl_settings.xml&id=0</url> - <active/> - </tab> -<!-- <tab> - <text>Jail defaults</text> - <url>/pkg_edit.php?xml=jailctl_defaults.xml&id=0</url> - </tab> --> - </tabs> - - <fields> - <field> - <fielddescr>FTP mirror</fielddescr> - <fieldname>jftpmirror</fieldname> - <description>Select a FTP server (mirror) to use for sysinstall</description> - <type>select</type> - <options> - <option><name>ftp-archive.freebsd.org</name><value>ftp://ftp-archive.freebsd.org/pub/FreeBSD-Archive/old-releases/</value></option> - </options> - <default_value>ftp://ftp-archive.freebsd.org/pub/FreeBSD-Archive/old-releases/</default_value> - </field> - <field> - <fielddescr>DNS servers</fielddescr> - <description>DNS servers to be added to /etc/resolv.conf of jails, space separated IP addresses</description> - <fieldname>jdnsservers</fieldname> - <type>textarea</type> - </field> - <field> - <fielddescr>Location for jails</fielddescr> - <fieldname>jstorage</fieldname> - <description>Jails will be stored here</description> - <type>input</type> - <default>/usr/local/jails</default> - <default_value>/usr/local/jails</default_value> - </field> - <field> - <fielddescr>Location for jail backups</fielddescr> - <fieldname>jbackup</fieldname> - <description>Backups are .tgz files of the jail directory</description> - <type>input</type> - <default_value>/usr/local/jails</default_value> - </field> - <field> - <fielddescr>Files to exclude from backup</fielddescr> - <fieldname>jbackupexcludes</fieldname> - <description>Files to exclude from backup</description> - <type>input</type> - <default_value>--exclude ./usr/ports/* --exclude ./tmp/* --exclude ./var/tmp/* --exclude ./usr/src/*</default_value> - </field> - <field> - <fielddescr>System configuration</fielddescr> - <fieldname>jrcconf</fieldname> - <type>rowhelper</type> - <rowhelper> - <rowhelperfield> - <fielddescr>Lines to add to /etc/rc.conf</fielddescr> - <type>input</type> - <size>25</size> - <fieldname>rcconfline</fieldname> - </rowhelperfield> - </rowhelper> - </field> - <field> - <fielddescr>Default password for jails</fielddescr> - <fieldname>jpasswd</fieldname> - <description>Set to "system" by default.<br> - <b>NOTE: Only type here if you want to change the current default password!</b><br> - This field will show as empty even if a password has been set. Changing this will not affect existing jails.</description> - <type>password</type> - <default_value>system</default_value> - </field> - <field> - <fielddescr>Debug mode</fielddescr> - <fieldname>debug</fieldname> - <type>checkbox</type> - <description>Enable debug information do be shown by the GUI</description> - </field> - - </fields> - - - <!-- php hooks --> - <include_file>/usr/local/pkg/jailctl.inc</include_file> - <custom_add_php_command> - sync_package_jailctl(); - </custom_add_php_command> - <custom_delete_php_command> - sync_package_jailctl(); - </custom_delete_php_command> - <custom_php_resync_config_command> - sync_package_jailctl(); - </custom_php_resync_config_command> - <custom_php_install_command> - </custom_php_install_command> - <custom_php_deinstall_command> - </custom_php_deinstall_command> -</packagegui> - |