diff options
author | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2008-07-01 11:03:59 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2008-07-01 11:03:59 +0530 |
commit | c094b90b9223234c3ca63d8b61f2f9e3dab35975 (patch) | |
tree | 3af125d9e344911ebfbf1aa7643795d1d1c4445c | |
parent | leetle bug pointed out by armin76 ;p (diff) | |
download | autotua-c094b90b9223234c3ca63d8b61f2f9e3dab35975.tar.gz autotua-c094b90b9223234c3ca63d8b61f2f9e3dab35975.tar.bz2 autotua-c094b90b9223234c3ca63d8b61f2f9e3dab35975.zip |
- Remove unneeded stuff from autotua.const
- add --progress to rsync
-rw-r--r-- | slave/autotua/const.py | 27 | ||||
-rw-r--r-- | slave/autotua/sync/__init__.py | 2 |
2 files changed, 1 insertions, 28 deletions
diff --git a/slave/autotua/const.py b/slave/autotua/const.py index 4ce479e..1e19c18 100644 --- a/slave/autotua/const.py +++ b/slave/autotua/const.py @@ -53,31 +53,4 @@ job_list = [ # These are in order of running 'atoms': ['=bheekling/test-beagle-1.0', '=bheekling/test-libbeagle-1.0', '=bheekling/build-brasero-1.0'], }, -# { -# 'maintainer': 'bheekling', -# 'name': 'wreak havoc', -# 'stage': 'gentoo://stage3', -# 'arch': 'mips4', -# 'type': '', -# 'release': '2007.0', -# 'jobtagerev': '1', -# 'atoms': ['bonsaikitten/i-likez-kittah'], -# }, -# { -# 'maintainer': 'bheekling', -# 'name': 'fork it', -# 'stage': 'gentoo://stage3', -# 'arch': 'x86', -# 'type': 'uclibc-hardened', -# 'release': '2008.0_beta2', -# 'jobtagerev': '1', -# 'atoms': ['bonsaikitten/i-likez-kittah'], -# }, -# { -# 'maintainer': 'bheekling', -# 'name': 'why?', -# 'stage': 'ftp://navya.junta.iitk.ac.in/gentoo/releases/x86/2007.0/stages/stage3-x86-2007.0.tar.bz2', -# 'jobtagerev': '1', -# 'atoms': ['bonsaikitten/i-likez-kittah'], -# } ] diff --git a/slave/autotua/sync/__init__.py b/slave/autotua/sync/__init__.py index 291b88e..c724f86 100644 --- a/slave/autotua/sync/__init__.py +++ b/slave/autotua/sync/__init__.py @@ -76,7 +76,7 @@ class Command(object): elif action == 'sync': return 'bzr export -r"%s" "%s" "%s"' % (self.rev, self.destdir, self.uri), {'rmtree': self.destdir}, elif self.scheme == 'rsync': - return 'rsync -a --delete "%s" "%s"' % (self.uri, self.destdir), + return 'rsync -a --progress --delete "%s" "%s"' % (self.uri, self.destdir), print "Unknown scheme: %s" % self.scheme return None |