diff options
author | Chris Buechler <cmb@pfsense.org> | 2014-04-11 14:56:44 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2014-04-11 14:59:53 -0500 |
commit | 075721b1e3cdf77a9e4691aa894f3c3ce391e344 (patch) | |
tree | 84d8d3f29608bb9713e2a8f6a63c4ff4a521deaa | |
parent | acb92811852985945720c536e3b0b71a7cc5ee16 (diff) | |
download | pfsense-packages-075721b1e3cdf77a9e4691aa894f3c3ce391e344.tar.gz pfsense-packages-075721b1e3cdf77a9e4691aa894f3c3ce391e344.tar.bz2 pfsense-packages-075721b1e3cdf77a9e4691aa894f3c3ce391e344.zip |
trim sha256 client-side on AutoConfigBackup, bump version
-rw-r--r-- | config/autoconfigbackup/autoconfigbackup.php | 2 | ||||
-rw-r--r-- | pkg_config.10.xml | 2 | ||||
-rw-r--r-- | pkg_config.8.xml | 2 | ||||
-rw-r--r-- | pkg_config.8.xml.amd64 | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/config/autoconfigbackup/autoconfigbackup.php b/config/autoconfigbackup/autoconfigbackup.php index 69ac3e03..20f5f741 100644 --- a/config/autoconfigbackup/autoconfigbackup.php +++ b/config/autoconfigbackup/autoconfigbackup.php @@ -194,7 +194,7 @@ function get_hostnames() { "&revision=" . urlencode($_REQUEST['newver'])); $data = curl_exec($curl_session); $data_split = split("\+\+\+\+", $data); - $sha256 = $data_split[0]; // sha256 + $sha256 = trim($data_split[0]); // sha256 $data = $data_split[1]; if (!tagfile_deformat($data, $data, "config.xml")) $input_errors[] = "The downloaded file does not appear to contain an encrypted pfSense configuration."; diff --git a/pkg_config.10.xml b/pkg_config.10.xml index 3110c7fd..869c2fe4 100644 --- a/pkg_config.10.xml +++ b/pkg_config.10.xml @@ -670,7 +670,7 @@ <descr>Automatically backs up your pfSense configuration. All contents are encrypted on the server. Requires pfSense Premium Support Portal Subscription from https://portal.pfsense.org</descr> <website>https://portal.pfsense.org</website> <category>Services</category> - <version>1.22</version> + <version>1.23</version> <status>Stable</status> <required_version>2.2</required_version> <pkginfolink>https://doc.pfsense.org/index.php/AutoConfigBackup</pkginfolink> diff --git a/pkg_config.8.xml b/pkg_config.8.xml index 62c39c74..6105f136 100644 --- a/pkg_config.8.xml +++ b/pkg_config.8.xml @@ -921,7 +921,7 @@ <descr>Automatically backs up your pfSense configuration. All contents are encrypted on the server. Requires pfSense Premium Support Portal Subscription from https://portal.pfsense.org</descr> <website>https://portal.pfsense.org</website> <category>Services</category> - <version>1.22</version> + <version>1.23</version> <status>Stable</status> <required_version>1.2</required_version> <pkginfolink>https://doc.pfsense.org/index.php/AutoConfigBackup</pkginfolink> diff --git a/pkg_config.8.xml.amd64 b/pkg_config.8.xml.amd64 index 51ab85b5..404d0967 100644 --- a/pkg_config.8.xml.amd64 +++ b/pkg_config.8.xml.amd64 @@ -908,7 +908,7 @@ <descr>Automatically backs up your pfSense configuration. All contents are encrypted on the server. Requires pfSense Premium Support Portal Subscription from https://portal.pfsense.org</descr> <website>https://portal.pfsense.org</website> <category>Services</category> - <version>1.22</version> + <version>1.23</version> <status>Stable</status> <required_version>1.2</required_version> <pkginfolink>https://doc.pfsense.org/index.php/AutoConfigBackup</pkginfolink> |