From 228e9f101df598b634208de6e4b5690a8810f28b Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Thu, 14 Oct 2004 01:56:45 +0000 Subject: Implement a new option, --norebuild, to urpmi, urpmi.update and urpmi.addmedia. It prevents rebuilding the hdlist from the headers of the RPMs for a local media. It's also settable globally in the urpmi.cfg file. Comes with doc. --- urpm/cfg.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'urpm/cfg.pm') diff --git a/urpm/cfg.pm b/urpm/cfg.pm index 3d5b123a..d6c48d6a 100644 --- a/urpm/cfg.pm +++ b/urpm/cfg.pm @@ -105,6 +105,7 @@ sub load_config ($) { #- boolean options if (($no, $k, $v) = /^(no-)?( verify-rpm + |norebuild |fuzzy |allow-(?:force|nodeps) |(?:pre|post)-clean @@ -116,6 +117,7 @@ sub load_config ($) { ) { my $yes = $no ? 0 : 1; $no = $yes ? 0 : 1; + $v = '' unless defined $v; $config{$medium}{$k} = $v =~ /^(yes|on|1|)$/i ? $yes : $no; next; } -- cgit v1.2.1