diff options
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 0525ee8a2..af9c22473 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -455,8 +455,9 @@ sub main { #- done after module dependencies are loaded for "vfat depends on fat" if ($::auto_install) { if ($::auto_install =~ /-IP(\.pl)?$/) { - my $ip = join('', map { sprintf "%02X", $_ } split '\.', $o->{intf}{IPADDR}); - $::auto_install =~ s/-IP(\.pl)?$/-$ip$1/; + my ($ip) = cat_('/tmp/stage1.log') =~ /configuring device (?!lo)\S+ ip: (\S+)/; + my $normalized_ip = join('', map { sprintf "%02X", $_ } split('\.', $ip)); + $::auto_install =~ s/-IP(\.pl)?$/-$normalized_ip$1/; } require install_steps_auto_install; eval { $o = $::o = install_any::loadO($o, $::auto_install) }; |