Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
6d7c1cb7
Commit
6d7c1cb7
authored
Jun 23, 2016
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
send exception to syslog for Google drive download
parent
e287db60
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
config.lib.inc
src/etc/inc/config.lib.inc
+10
-6
No files found.
src/etc/inc/config.lib.inc
View file @
6d7c1cb7
...
...
@@ -355,12 +355,16 @@ function backup_to_google_drive()
$target_filename
=
"config-"
.
time
()
.
".xml"
;
if
(
count
(
$configfiles
)
>
1
)
{
// compare last backup with current, only save new
$bck_data_enc_in
=
$client
->
download
(
$configfiles
[
array_keys
(
$configfiles
)[
0
]]);
$bck_data_enc
=
""
;
tagfile_deformat
(
$bck_data_enc_in
,
$bck_data_enc
,
"config.xml"
);
$bck_data
=
decrypt_data
(
$bck_data_enc
,
$config
->
system
->
remotebackup
->
GDrivePassword
->
__toString
());
if
(
$bck_data
==
$confdata
)
{
$target_filename
=
null
;
try
{
$bck_data_enc_in
=
$client
->
download
(
$configfiles
[
array_keys
(
$configfiles
)[
0
]]);
$bck_data_enc
=
""
;
tagfile_deformat
(
$bck_data_enc_in
,
$bck_data_enc
,
"config.xml"
);
$bck_data
=
decrypt_data
(
$bck_data_enc
,
$config
->
system
->
remotebackup
->
GDrivePassword
->
__toString
());
if
(
$bck_data
==
$confdata
)
{
$target_filename
=
null
;
}
}
catch
(
Exception
$e
)
{
log_error
(
"unable to download "
.
$configfiles
[
array_keys
(
$configfiles
)[
0
]]
->
description
.
" from Google Drive ("
.
$e
.
")"
);
}
}
if
(
!
is_null
(
$target_filename
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment