Ignore:
Timestamp:
May 10, 2012, 12:47:51 PM (12 years ago)
Author:
Bruno Cornec
Message:

r4760@localhost: bruno | 2012-05-10 11:48:21 +0200

  • pb.conf: sudo does not pass through the DEBIAN_FRONTEND variable; use env to make sure it is set. Also change from --force-yes to --allow-unauthenticated (Eric Anderson)
  • Base.pm: Provide a better error message for failures of pb_mkdir_p (Eric Anderson)
  • Distribution.pm: Make sure to apply the ftp/http proxy when installing dependencies. Also add hack to try the install twice if it fails the first time. That may be unnecessary with the DEBIAN_FRONTEND fix, but doesn't hurt. (Eric Anderson)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/pb-modules/lib/ProjectBuilder/Distribution.pm

    r1514 r1515  
    1010use strict;
    1111use Data::Dumper;
     12use Carp 'confess';
    1213use ProjectBuilder::Version;
    1314use ProjectBuilder::Base;
     
    303304my $deps = shift || undef;
    304305
     306my $ftp_proxy = pb_distro_get_param($pbos,pb_conf_get_if("ftp_proxy"));
     307my $http_proxy = pb_distro_get_param($pbos,pb_conf_get_if("http_proxy"));
     308
     309# We do not overwrite shell settings
     310$ENV{ftp_proxy} ||= $ftp_proxy;
     311$ENV{http_proxy} ||= $http_proxy;
     312
    305313# Protection
    306314return if (not defined $pbos->{'install'});
     
    313321# This may not be // proof. We should test for availability of repo and sleep if not
    314322my $cmd = "$pbos->{'install'} $deps";
    315 pb_system($cmd,"Installing dependencies ($cmd)");
     323my $ret = pb_system($cmd, "Installing dependencies ($cmd)", undef, 1);
     324# Try to accomodate deficient proxies
     325if ($ret != 0) {
     326    pb_system($cmd, "Re-trying installing dependencies ($cmd)");
     327}
    316328}
    317329
Note: See TracChangeset for help on using the changeset viewer.