summaryrefslogtreecommitdiffstats
path: root/urpm/cfg.pm
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-02-21 09:57:49 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-02-21 09:57:49 +0000
commit30d7067c0fd184956ca5f866e7903c6fa241717f (patch)
tree62b1f864c823295ee0d6a083ef04000573455621 /urpm/cfg.pm
parent80828e3ac6e7203d62a7004d465037c22bbe4bda (diff)
downloadurpmi-30d7067c0fd184956ca5f866e7903c6fa241717f.tar
urpmi-30d7067c0fd184956ca5f866e7903c6fa241717f.tar.gz
urpmi-30d7067c0fd184956ca5f866e7903c6fa241717f.tar.bz2
urpmi-30d7067c0fd184956ca5f866e7903c6fa241717f.tar.xz
urpmi-30d7067c0fd184956ca5f866e7903c6fa241717f.zip
Factorize out the code that handles /etc/urpmi/mirror.config
Diffstat (limited to 'urpm/cfg.pm')
-rw-r--r--urpm/cfg.pm18
1 files changed, 18 insertions, 0 deletions
diff --git a/urpm/cfg.pm b/urpm/cfg.pm
index 815a992a..f5186e23 100644
--- a/urpm/cfg.pm
+++ b/urpm/cfg.pm
@@ -217,6 +217,24 @@ sub dump_config ($$) {
return 1;
}
+#- routines to handle mirror list location
+
+#- Default mirror list
+our $mirrors = 'http://www.mandrakelinux.com/mirrorsfull.list';
+
+sub mirrors_cfg () {
+ if (-e "/etc/urpmi/mirror.config") {
+ local $_;
+ open my $fh, "/etc/urpmi/mirror.config" or return undef;
+ while (<$fh>) {
+ chomp; s/#.*$//; s/^\s*//; s/\s*$//;
+ /^url\s*=\s*(.*)/ and $mirrors = $1;
+ }
+ close $fh;
+ }
+ return 1;
+}
+
1;
__END__