summaryrefslogtreecommitdiffstats
path: root/urpm/cfg.pm
diff options
context:
space:
mode:
Diffstat (limited to 'urpm/cfg.pm')
-rw-r--r--urpm/cfg.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/cfg.pm b/urpm/cfg.pm
index c5a964d2..38b88db2 100644
--- a/urpm/cfg.pm
+++ b/urpm/cfg.pm
@@ -54,8 +54,8 @@ my ($arch, $release);
sub _init_arch_release () {
if (!$arch && !$release) {
my $l = cat_('/etc/release') or return undef;
- $release = 'cooker' if $l =~ /cooker/i;
($release, $arch) = $l =~ /release (\d+\.?\d?).*for (\w+)/;
+ $release = 'cauldron' if $l =~ /cauldron/i;
}
1;
}