aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Iurt/Chroot.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-04-17 20:50:17 +0000
committerThierry Vignaud <tv@mageia.org>2012-04-17 20:50:17 +0000
commit66ab797e670d51917a4e1d7f1712d4ec9da11df2 (patch)
treecbd800d28b97b04f7042592cec161b3cca1335f4 /lib/Iurt/Chroot.pm
parente551cc2e53a861826589fec414c79c232c9a934e (diff)
downloadiurt-66ab797e670d51917a4e1d7f1712d4ec9da11df2.tar
iurt-66ab797e670d51917a4e1d7f1712d4ec9da11df2.tar.gz
iurt-66ab797e670d51917a4e1d7f1712d4ec9da11df2.tar.bz2
iurt-66ab797e670d51917a4e1d7f1712d4ec9da11df2.tar.xz
iurt-66ab797e670d51917a4e1d7f1712d4ec9da11df2.zip
(clean_chroot,new,urpmi_command) simplify using urpm::is_local_url()
Diffstat (limited to 'lib/Iurt/Chroot.pm')
-rw-r--r--lib/Iurt/Chroot.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Iurt/Chroot.pm b/lib/Iurt/Chroot.pm
index f0d1e4b..1ed50f6 100644
--- a/lib/Iurt/Chroot.pm
+++ b/lib/Iurt/Chroot.pm
@@ -9,6 +9,7 @@ use Iurt::Config qw(dump_cache_par);
use Iurt::Util qw(plog);
use File::Temp 'mktemp';
use File::Path 'mkpath';
+use urpm;
our @EXPORT = qw(
clean_chroot_tmp
@@ -92,7 +93,7 @@ sub clean_chroot {
if ($run->{additional_media} && $run->{additional_media}{repository}) {
my $rep = $run->{additional_media}{repository};
- if ($rep !~ m/^(ftp|https?|rsync):)/) {
+ if (urpm::is_local_url($rep)) {
my $mount_point = "$chroot/urpmi_medias";
my $url = $rep;
$url =~ s!^file://!!;