diff options
Diffstat (limited to 'config/autoconfigbackup/autoconfigbackup.xml')
-rw-r--r-- | config/autoconfigbackup/autoconfigbackup.xml | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/config/autoconfigbackup/autoconfigbackup.xml b/config/autoconfigbackup/autoconfigbackup.xml index 0d324d8a..eb3f7545 100644 --- a/config/autoconfigbackup/autoconfigbackup.xml +++ b/config/autoconfigbackup/autoconfigbackup.xml @@ -7,8 +7,8 @@ /* $Id$ */ /* autoconfigbackup.xml - part of pfSense (http://www.pfSense.com) - Copyright (C) 2008 BSD Perimeter + part of pfSense (https://www.pfsense.org) + Copyright (C) 2008-2014 Electric Sheep Fencing LP All rights reserved. Redistribution and use in source and binary forms, with or without @@ -34,10 +34,10 @@ */ ]]> </copyright> - <description>Automatically backs up your pfSense configuration. All contents are encrypted on the server. Requires Gold or Support Subscription from https://portal.pfsense.org</description> + <description>Automatically backs up your pfSense configuration. All contents are encrypted before being sent to the server. Requires Gold Subscription from https://portal.pfsense.org</description> <requirements>pfSense Portal subscription</requirements> <name>AutoConfigBackup</name> - <version>1.22</version> + <version>1.28</version> <title>Diagnostics: Auto Configuration Backup</title> <savetext>Change</savetext> <include_file>/usr/local/pkg/autoconfigbackup.inc</include_file> @@ -132,19 +132,15 @@ <fieldname>crypto_password2</fieldname> <type>password</type> </field> - <field> - <fielddescr>Test connection</fielddescr> - <description>Check this box to test the connection to portal.pfsense.org.</description> - <fieldname>testconnection</fieldname> - <type>checkbox</type> - </field> </fields> <custom_php_validation_command> - custom_php_validation_command($_POST, &$input_errors); + custom_php_validation_command($_POST, $input_errors); </custom_php_validation_command> <custom_php_resync_config_command> <![CDATA[ - exec("echo > /cf/conf/lastpfSbackup.txt"); + conf_mount_rw(); + @unlink("/cf/conf/lastpfSbackup.txt"); + conf_mount_ro(); if(!function_exists("filter_configure")) require_once("filter.inc"); filter_configure(); |