Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
backupninja
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Liberate
backupninja
Commits
b7dd0cbf
Commit
b7dd0cbf
authored
19 years ago
by
intrigeri
Browse files
Options
Downloads
Patches
Plain Diff
handlers/rdiff: make use of new lib/vserver functionality
parent
a04140d0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+4
-1
4 additions, 1 deletion
ChangeLog
handlers/rdiff
+6
-6
6 additions, 6 deletions
handlers/rdiff
with
10 additions
and
7 deletions
ChangeLog
+
4
−
1
View file @
b7dd0cbf
...
@@ -17,13 +17,16 @@ version 0.9.3 -- unreleased
...
@@ -17,13 +17,16 @@ version 0.9.3 -- unreleased
. now works when multiple vservers names are given (separated by space)
. now works when multiple vservers names are given (separated by space)
in vsnames config variable
in vsnames config variable
. make use of new lib/vserver functionality
. make use of new lib/vserver functionality
rdiff
. make use of new lib/vserver functionality
. fixed globbing bug in include, exclude and vsinclude options
ninjahelper changes
ninjahelper changes
rdiff.helper:
rdiff.helper:
. fixed errors in create remote dir
. fixed errors in create remote dir
. code formatting cleanup (three spaces indent)
. code formatting cleanup (three spaces indent)
. fixed bug which caused only first include/exclude dir to
. fixed bug which caused only first include/exclude dir to
have "include = "
have "include = "
. fixed globbing bug with
include and exclude (twice ;)
. fixed globbing bug with
exclude
ninjahelper:
ninjahelper:
. now reports error if the helper script has a syntax error or bombs out.
. now reports error if the helper script has a syntax error or bombs out.
. code formatting cleanup (three spaces indent)
. code formatting cleanup (three spaces indent)
...
...
This diff is collapsed.
Click to expand it.
handlers/rdiff
+
6
−
6
View file @
b7dd0cbf
...
@@ -172,12 +172,12 @@ done
...
@@ -172,12 +172,12 @@ done
# vsinclude
# vsinclude
if
[
$usevserver
=
yes
]
;
then
if
[
$usevserver
=
yes
]
;
then
for
vserver
in
`
ls
$VROOTDIR
|grep
-v
lost+found
`
;
do
for
vserver
in
$found_vservers
;
do
for
vi
in
"
$vsinclude
"
;
do
for
vi
in
"
$vsinclude
"
;
do
str
=
"
${
vi
//__star__/*
}
"
str
=
"
${
vi
//__star__/*
}
"
execstr
=
"
${
execstr
}
--include '
$VROOTDIR
/
$vserver$str
' "
execstr
=
"
${
execstr
}
--include '
$VROOTDIR
/
$vserver$str
' "
done
done
done
done
fi
fi
# exclude everything else
# exclude everything else
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment