add missing arguments to rsync

-X, -A, -H and --recursive could be handy and were missing.
This commit is contained in:
Fabio Erculiani
2009-03-26 14:46:49 +01:00
parent 2083ff143f
commit b2eadf7841
+4 -2
View File
@@ -54,8 +54,10 @@ class Configuration(dict):
'iso_builder': "mkisofs",
'mirror_syncer': "rsync",
'chroot_compressor_builtin_args': ["-noappend"],
'iso_builder_builtin_args': ["-J","-R","-l","-no-emul-boot","-boot-load-size","4","-udf","-boot-info-table"],
'mirror_syncer_builtin_args': ["-a","--delete","--delete-excluded","--numeric-ids"],
'iso_builder_builtin_args': ["-J","-R","-l","-no-emul-boot",
"-boot-load-size","4","-udf","-boot-info-table"],
'mirror_syncer_builtin_args': ["-a","--delete","--delete-excluded",
"--numeric-ids","--recursive","-X","-A","-H"],
'chroot_compressor_output_file': "livecd.squashfs",
}
self.clear()