From d2dff5993cab6360557eda7d3f68d2fed47c6629 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Mon, 26 Jul 2004 01:09:59 +0000 Subject: Add a "noreconfigure" flag for media that don't want to be reconfigured. (patch by Michael Scherer) --- urpm.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'urpm.pm') diff --git a/urpm.pm b/urpm.pm index 614ae7a8..618942da 100644 --- a/urpm.pm +++ b/urpm.pm @@ -164,6 +164,7 @@ sub read_config { key-ids list md5sum + noreconfigure removable synthesis update @@ -1287,7 +1288,7 @@ this could happen if you mounted manually the directory when creating the medium } } else { #- check for a reconfig.urpmi file (if not already reconfigured) - if (!$media_redone{$medium->{name}}) { + if (!$media_redone{$medium->{name}} and !$medium->{noreconfigure}) { my $reconfig_urpmi_url = "$medium->{url}/reconfig.urpmi"; unlink( my $reconfig_urpmi = "$urpm->{cachedir}/partial/reconfig.urpmi" ); eval { -- cgit v1.2.1