Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
snf-image-creator
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
itminedu
snf-image-creator
Commits
1fa75c4c
Commit
1fa75c4c
authored
12 years ago
by
Nikos Skalkotos
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup Rsync class and add extra options
Add options for preserving extended atrributes, hard links, ACLs.
parent
6228d45e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
image_creator/bundle_volume.py
+9
-3
9 additions, 3 deletions
image_creator/bundle_volume.py
image_creator/rsync.py
+48
-19
48 additions, 19 deletions
image_creator/rsync.py
with
57 additions
and
22 deletions
image_creator/bundle_volume.py
+
9
−
3
View file @
1fa75c4c
...
@@ -377,9 +377,15 @@ class BundleVolume(object):
...
@@ -377,9 +377,15 @@ class BundleVolume(object):
[(
mapped
[
i
],
filesystem
[
i
].
mpoint
)
[(
mapped
[
i
],
filesystem
[
i
].
mpoint
)
for
i
in
mapped
.
keys
()])
for
i
in
mapped
.
keys
()])
exclude
=
self
.
_to_exclude
()
+
[
image
]
exclude
=
self
.
_to_exclude
()
+
[
image
]
rsync
=
Rsync
(
'
/
'
,
target
,
map
(
lambda
p
:
os
.
path
.
relpath
(
p
,
'
/
'
),
exclude
))
rsync
=
Rsync
(
self
.
out
)
rsync
.
archive
().
run
(
self
.
out
)
# Excluded paths need to be relative to the source
for
excl
in
map
(
lambda
p
:
os
.
path
.
relpath
(
p
,
'
/
'
),
exclude
):
rsync
.
exclude
(
excl
)
rsync
.
archive
().
hard_links
().
xattrs
().
sparse
().
acls
()
rsync
.
run
(
'
/
'
,
target
)
# We need to replace the old UUID referencies with the new
# We need to replace the old UUID referencies with the new
# ones in grub configuration files and /etc/fstab for file
# ones in grub configuration files and /etc/fstab for file
...
...
This diff is collapsed.
Click to expand it.
image_creator/rsync.py
+
48
−
19
View file @
1fa75c4c
...
@@ -41,32 +41,60 @@ from image_creator.util import FatalError
...
@@ -41,32 +41,60 @@ from image_creator.util import FatalError
class
Rsync
:
class
Rsync
:
"""
Wrapper class for the rsync command
"""
"""
Wrapper class for the rsync command
"""
def
__init__
(
self
,
src
,
dest
,
exclude
=
[]):
def
__init__
(
self
,
output
):
"""
Create an instance by defining a source, a destinationa and a number
"""
Create an instance
"""
of exclude patterns.
self
.
_out
=
output
"""
self
.
_exclude
=
[]
self
.
src
=
src
self
.
_options
=
[
'
-v
'
]
self
.
dest
=
dest
self
.
exclude
=
exclude
self
.
options
=
[
'
-v
'
]
def
archive
(
self
):
def
archive
(
self
):
"""
Enable the archive option
"""
"""
Enable the archive option
"""
self
.
options
.
append
(
'
-a
'
)
self
.
_
options
.
append
(
'
-a
'
)
return
self
return
self
def
run
(
self
,
out
):
def
xattrs
(
self
):
"""
Preserve extended attributes
"""
self
.
_options
.
append
(
'
-X
'
)
return
self
def
hard_links
(
self
):
"""
Preserve hard links
"""
self
.
_options
.
append
(
'
-H
'
)
return
self
def
acls
(
self
):
"""
Preserve ACLs
"""
self
.
_options
.
append
(
'
-A
'
)
return
self
def
sparse
(
self
):
"""
Handle sparse files efficiently
"""
self
.
_options
.
append
(
'
-S
'
)
return
self
def
exclude
(
self
,
pattern
):
"""
Add an exclude pattern
"""
self
.
_exclude
.
append
(
pattern
)
return
self
def
reset
(
self
):
"""
Reset all rsync options
"""
self
.
_exclude
=
[]
self
.
_options
=
[
'
-v
'
]
def
run
(
self
,
src
,
dest
):
"""
Run the actual command
"""
"""
Run the actual command
"""
cmd
=
[]
cmd
=
[]
cmd
.
append
(
'
rsync
'
)
cmd
.
append
(
'
rsync
'
)
cmd
.
extend
(
self
.
options
)
cmd
.
extend
(
self
.
_
options
)
for
i
in
self
.
exclude
:
for
i
in
self
.
_
exclude
:
cmd
.
extend
([
'
--exclude
'
,
i
])
cmd
.
extend
([
'
--exclude
'
,
i
])
out
.
output
(
"
Calculating total number of host files ...
"
,
False
)
self
.
_out
.
output
(
"
Calculating total number of host files ...
"
,
False
)
dry_run
=
subprocess
.
Popen
(
cmd
+
[
'
-n
'
,
self
.
src
,
self
.
dest
],
shell
=
False
,
stdout
=
subprocess
.
PIPE
,
# If you don't specify a destination, rsync will list the source files.
bufsize
=
0
)
dry_run
=
subprocess
.
Popen
(
cmd
+
[
src
],
shell
=
False
,
stdout
=
subprocess
.
PIPE
,
bufsize
=
0
)
try
:
try
:
total
=
0
total
=
0
for
line
in
iter
(
dry_run
.
stdout
.
readline
,
b
''
):
for
line
in
iter
(
dry_run
.
stdout
.
readline
,
b
''
):
...
@@ -76,10 +104,11 @@ class Rsync:
...
@@ -76,10 +104,11 @@ class Rsync:
if
dry_run
.
returncode
!=
0
:
if
dry_run
.
returncode
!=
0
:
raise
FatalError
(
"
rsync failed
"
)
raise
FatalError
(
"
rsync failed
"
)
out
.
success
(
"
%d
"
%
total
)
self
.
_
out
.
success
(
"
%d
"
%
total
)
progress
=
out
.
Progress
(
total
,
"
Copying files into the image ...
"
)
progress
=
self
.
_out
.
Progress
(
total
,
run
=
subprocess
.
Popen
(
cmd
+
[
self
.
src
,
self
.
dest
],
shell
=
False
,
"
Copying host files into the image ...
"
)
run
=
subprocess
.
Popen
(
cmd
+
[
src
,
dest
],
shell
=
False
,
stdout
=
subprocess
.
PIPE
,
bufsize
=
0
)
stdout
=
subprocess
.
PIPE
,
bufsize
=
0
)
try
:
try
:
t
=
time
.
time
()
t
=
time
.
time
()
...
...
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