141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 | |
def init_rsync(self, reporter): |
-> ignores = self.config.getvalue_pathlist("dist_rsync_ignore") |
self.prepare_gateways(reporter) |
|
for root in self.roots: |
rsync = HostRSync(root, ignores=ignores, |
verbose=self.config.option.verbose) |
if self._addrel: |
destrelpath = "" |
else: |
destrelpath = root.basename |
for host in self.hosts: |
rsync.add_target_host(host, destrelpath, reporter) |
rsync.send(raises=False) | |