aboutsummaryrefslogtreecommitdiffstats
path: root/RepSys/mirror.py
diff options
context:
space:
mode:
authorBogdano Arendartchuk <bogdano@mandriva.org>2007-11-15 05:30:56 +0000
committerBogdano Arendartchuk <bogdano@mandriva.org>2007-11-15 05:30:56 +0000
commite196e676aa302cd3a1f7b37f259491a8b03cc483 (patch)
tree47a3bcd478e678037e748d661ba861a6a8f44328 /RepSys/mirror.py
parentfa6fb5c9da640532db63db2aa9111c523cb35fe4 (diff)
downloadmgarepo-e196e676aa302cd3a1f7b37f259491a8b03cc483.tar
mgarepo-e196e676aa302cd3a1f7b37f259491a8b03cc483.tar.gz
mgarepo-e196e676aa302cd3a1f7b37f259491a8b03cc483.tar.bz2
mgarepo-e196e676aa302cd3a1f7b37f259491a8b03cc483.tar.xz
mgarepo-e196e676aa302cd3a1f7b37f259491a8b03cc483.zip
Dropped all authenticated access support
Subversion authentication has been broken for a long time and the workarounds weren't decent. It will be back in 1.7.x. Also added configuration option svn-command in the global section, allowing to replace the default svn command. And use svn+ssh:// URLs to be in BatchMode, in order to not have any interactivity at all with ssh
Diffstat (limited to 'RepSys/mirror.py')
-rw-r--r--RepSys/mirror.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/RepSys/mirror.py b/RepSys/mirror.py
index 0c45c9e..4fb40ce 100644
--- a/RepSys/mirror.py
+++ b/RepSys/mirror.py
@@ -45,7 +45,7 @@ def enabled(wcurl=None):
return enabled
def mirror_relocate(oldparent, newparent, url, wcpath):
- svn = SVN(noauth=True)
+ svn = SVN()
newurl = relocate_path(oldparent, newparent, url)
svn.switch(newurl, url, path=wcpath, relocate="True")
return newurl