Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
106
Merge Requests
106
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos
Commits
6cf1769d
Commit
6cf1769d
authored
Oct 24, 2024
by
Julien Muchembled
2
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5: fix handling of repozo restoration failure
parent
8b7b0e92
Pipeline
#37688
failed with stage
in 0 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
16 deletions
+9
-16
stack/erp5-zope2/buildout.hash.cfg
stack/erp5-zope2/buildout.hash.cfg
+1
-1
stack/erp5-zope2/instance-zeo.cfg.in
stack/erp5-zope2/instance-zeo.cfg.in
+4
-10
stack/erp5/buildout.hash.cfg
stack/erp5/buildout.hash.cfg
+1
-1
stack/erp5/instance-zeo.cfg.in
stack/erp5/instance-zeo.cfg.in
+3
-4
No files found.
stack/erp5-zope2/buildout.hash.cfg
View file @
6cf1769d
...
...
@@ -78,7 +78,7 @@ md5sum = 6b10ab0c54278156caf058ebb7246645
[template-zeo]
filename = instance-zeo.cfg.in
md5sum =
0ba5735ab87ee53e2c203b1563b55ff0
md5sum =
f67c7dac3f3f71b0f1f8c2cfcfc49b29
[template-zodb-base]
filename = instance-zodb-base.cfg.in
...
...
stack/erp5-zope2/instance-zeo.cfg.in
View file @
6cf1769d
...
...
@@ -152,18 +152,12 @@ input = inline: #!/bin/sh
exit 1
fi
fi
echo "Removing $zodb_path..."
echo "Restoring $storage_name into $zodb_path..."
$repozo --verify --repository="$zodb_backup_directory/$storage_name"
CURRENT_EXIT_CODE=$?
if [ ! "$CURRENT_EXIT_CODE"="0" ]; then
echo "$storage_name Backup verification failed. Backup data is inconsistent."
exit "$CURRENT_EXIT_CODE"
fi
echo "Restoring $zodb_path..."
$repozo --verify --repository="$zodb_backup_directory/$storage_name" &&
$repozo --recover --output="$zodb_directory/$zodb_path" --repository="$zodb_backup_directory/$storage_name"
CURRENT_EXIT_CODE=$?
if [
! "$CURRENT_EXIT_CODE"="0"
]; then
EXIT_CODE=
"$CURRENT_EXIT_CODE"
if [
$CURRENT_EXIT_CODE != 0
]; then
EXIT_CODE=
$CURRENT_EXIT_CODE
echo "$storage_name Backup restoration failed."
fi
{% endfor -%}
...
...
stack/erp5/buildout.hash.cfg
View file @
6cf1769d
...
...
@@ -78,7 +78,7 @@ md5sum = 1333d2fc21f64da4010a4eafea59d141
[template-zeo]
filename = instance-zeo.cfg.in
md5sum =
702afb430227eebe4312a618da7ef7cb
md5sum =
6513f1ecd9a2daaf36ca720f15932ae3
[template-zeo-conf]
filename = zeo.conf.in
...
...
stack/erp5/instance-zeo.cfg.in
View file @
6cf1769d
...
...
@@ -203,12 +203,11 @@ inline =
exit 1
fi
fi
echo "Removing $zodb_path..."
echo "Restoring $storage_name into $zodb_path..."
echo "Restoring $zodb_path..."
$repozo --recover --with-verify --output="$zodb_directory/$zodb_path" --repository="$zodb_backup_directory/$storage_name"
CURRENT_EXIT_CODE=$?
if [
! "$CURRENT_EXIT_CODE"="0"
]; then
EXIT_CODE=
"$CURRENT_EXIT_CODE"
if [
$CURRENT_EXIT_CODE != 0
]; then
EXIT_CODE=
$CURRENT_EXIT_CODE
echo "$storage_name Backup restoration failed."
fi
{% endfor -%}
...
...
Jérome Perrin
@jerome
mentioned in commit
7cafd1c8
·
Oct 29, 2024
mentioned in commit
7cafd1c8
mentioned in commit 7cafd1c8b84b954a1c0e1c011f04a0eaac4e1b4d
Toggle commit list
Jérome Perrin
@jerome
mentioned in commit
eb27b0ce
·
Oct 29, 2024
mentioned in commit
eb27b0ce
mentioned in commit eb27b0ceabc31dd6c267119d3f65d573187162ee
Toggle commit list
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