summaryrefslogtreecommitdiff
path: root/AptSources/aptsources.py
diff options
context:
space:
mode:
Diffstat (limited to 'AptSources/aptsources.py')
-rw-r--r--AptSources/aptsources.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/AptSources/aptsources.py b/AptSources/aptsources.py
index 34b5b967..713b0ff8 100644
--- a/AptSources/aptsources.py
+++ b/AptSources/aptsources.py
@@ -219,7 +219,7 @@ class SourcesList:
""" represents the full sources.list + sources.list.d file """
def __init__(self,
withMatcher=True,
- matcherPath="/usr/share/update-manager/channels/"):
+ matcherPath="/usr/share/python-aptsources/templates/"):
self.list = [] # the actual SourceEntries Type
if withMatcher:
self.matcher = SourceEntryMatcher(matcherPath)
@@ -673,6 +673,17 @@ class Distribution:
if len(source.comps) < 1:
sourceslist.remove(source)
+ def change_server(self, uri):
+ ''' Change the server of all distro specific sources to
+ a given host '''
+ sources = []
+ sources.extend(self.main_sources)
+ sources.extend(self.child_sources)
+ sources.extend(self.source_code_sources)
+ for source in sources:
+ # FIXME: ugly
+ if not "security.ubuntu.com" in source.uri:
+ source.uri = uri
# some simple tests
if __name__ == "__main__":