diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | urpm/download.pm | 3 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,6 @@ +- library: + o modify urpm::download::get_content() to work as non-superuser + Version 5.19.1 - 18 August 2008, by Pascal "Pixel" Rigaux - gurpmi diff --git a/urpm/download.pm b/urpm/download.pm index 27f03f98..bd0afd9e 100644 --- a/urpm/download.pm +++ b/urpm/download.pm @@ -772,6 +772,9 @@ sub sync { sub get_content { my ($urpm, $url) = @_; + # ensure $urpm->{cachedir} is writable when non-superuser + urpm::userdir($urpm); + my $file = "$urpm->{cachedir}/partial/" . basename($url); unlink $file; # prevent "partial file" errors |