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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
slapos
Commits
407b7d8b
Commit
407b7d8b
authored
Jun 05, 2023
by
Boxiang Sun
Committed by
Thomas Gambier
Feb 28, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
software/backupserver: Update rdiff-backup version
Use Python 3 by default
parent
b119537c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
8 deletions
+5
-8
software/backupserver/buildout.hash.cfg
software/backupserver/buildout.hash.cfg
+2
-2
software/backupserver/instance-pullrdiffbackup.cfg.in
software/backupserver/instance-pullrdiffbackup.cfg.in
+1
-1
software/backupserver/software.cfg
software/backupserver/software.cfg
+0
-3
software/backupserver/template-backup-script.sh.in
software/backupserver/template-backup-script.sh.in
+2
-2
No files found.
software/backupserver/buildout.hash.cfg
View file @
407b7d8b
...
@@ -26,7 +26,7 @@ md5sum = 851262d7174da868805cb7c8e1ced7c0
...
@@ -26,7 +26,7 @@ md5sum = 851262d7174da868805cb7c8e1ced7c0
[template-backup-script]
[template-backup-script]
filename = template-backup-script.sh.in
filename = template-backup-script.sh.in
md5sum =
3f3286347a7e271e7bfa66e1a840989b
md5sum =
98e9b840497f4cce62e2b60928e063a3
[template-crontab-line]
[template-crontab-line]
filename = template-crontab-line.in
filename = template-crontab-line.in
...
@@ -46,7 +46,7 @@ md5sum = ae4a0043414336a521b524d9c95f1c68
...
@@ -46,7 +46,7 @@ md5sum = ae4a0043414336a521b524d9c95f1c68
[template-pullrdiffbackup]
[template-pullrdiffbackup]
filename = instance-pullrdiffbackup.cfg.in
filename = instance-pullrdiffbackup.cfg.in
md5sum =
931038cfa23216af1628b960a2e10de6
md5sum =
25f77031911fa97dbda44377690392d0
[template]
[template]
filename = instance.cfg.in
filename = instance.cfg.in
...
...
software/backupserver/instance-pullrdiffbackup.cfg.in
View file @
407b7d8b
...
@@ -60,7 +60,7 @@ logfile = $${directory:log}/crond.log
...
@@ -60,7 +60,7 @@ logfile = $${directory:log}/crond.log
{% set exclude = slave_instance.get('exclude', '') -%}
{% set exclude = slave_instance.get('exclude', '') -%}
{% set exclude_string = '' -%}
{% set exclude_string = '' -%}
{% set sudo = slave_instance.get('sudo', 'False') -%}
{% set sudo = slave_instance.get('sudo', 'False') -%}
{% set remote_schema = slave_instance.get('remote_rdiff_path', 'rdiff-backup') + '
--server --restrict-read-only
/ -- "$@"' -%}
{% set remote_schema = slave_instance.get('remote_rdiff_path', 'rdiff-backup') + '
server --restrict-mode read-only --restrict-path
/ -- "$@"' -%}
{% if (exclude != '') -%}
{% if (exclude != '') -%}
{% set exclude_string = "' --exclude='".join(exclude.split(' ')) -%}
{% set exclude_string = "' --exclude='".join(exclude.split(' ')) -%}
...
...
software/backupserver/software.cfg
View file @
407b7d8b
...
@@ -27,9 +27,6 @@ parts =
...
@@ -27,9 +27,6 @@ parts =
template-crontab-line
template-crontab-line
slapos-cookbook
slapos-cookbook
[python]
part = python2.7
[rssgen-eggs]
[rssgen-eggs]
recipe = zc.recipe.egg
recipe = zc.recipe.egg
interpreter = python-${:_buildout_section_name_}
interpreter = python-${:_buildout_section_name_}
...
...
software/backupserver/template-backup-script.sh.in
View file @
407b7d8b
...
@@ -21,12 +21,12 @@ ${util-linux:location}/bin/flock $${:status_log}.lock \
...
@@ -21,12 +21,12 @@ ${util-linux:location}/bin/flock $${:status_log}.lock \
$${:connection}::/ ./
$${:connection}::/ ./
RESULT=$?
RESULT=$?
# Inform about backup status
# Inform about backup status
if [ $RESULT -eq 0 ]
if [ $RESULT -eq 0 ]
then
then
${coreutils-output:echo} "`${coreutils-output:date} --iso-8601=seconds -u`, $${:statistic_log}, $${:hostname}, backup success" >> $${:status_log}
${coreutils-output:echo} "`${coreutils-output:date} --iso-8601=seconds -u`, $${:statistic_log}, $${:hostname}, backup success" >> $${:status_log}
${findutils-output:find} rdiff-backup-data/ -maxdepth 1 -name "session_statistic*" | ${coreutils-output:sort} | ${coreutils-output:tail} -n 1 | ${findutils-output:xargs} ${rdiff-backup-
1.0.5:location}/bin/rdiff-backup --calculate-
average > $${:statistic_log}
${findutils-output:find} rdiff-backup-data/ -maxdepth 1 -name "session_statistic*" | ${coreutils-output:sort} | ${coreutils-output:tail} -n 1 | ${findutils-output:xargs} ${rdiff-backup-
2.2.4:location}/bin/rdiff-backup calculate --method
average > $${:statistic_log}
else
else
${coreutils-output:echo} "`${coreutils-output:date} --iso-8601=seconds -u`, $${:statistic_log}, $${:hostname}, backup failed" >> $${:status_log}
${coreutils-output:echo} "`${coreutils-output:date} --iso-8601=seconds -u`, $${:statistic_log}, $${:hostname}, backup failed" >> $${:status_log}
fi
fi
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