1
0
mirror of synced 2026-02-04 23:14:47 +00:00

Only show the install source if there is one.

This commit is contained in:
Steve Kemp
2008-03-14 12:12:28 +00:00
parent 7a6c7f17c9
commit be30692061

View File

@@ -2972,7 +2972,16 @@ sub installSystem
# Show the user what they are installing
#
logprint( "Installation method: $CONFIG{'install-method'}\n" );
logprint( "(Source: $CONFIG{'install-source'})\n" ) if defined( $CONFIG{'install-source'} );
#
# And where from, if relevant.
#
if ( ( lc($CONFIG{'install-method'}) eq "copy" ) ||
( lc($CONFIG{'install-method'}) eq "image-server" ) ||
( lc($CONFIG{'install-method'}) eq "tar" ) )
{
logprint( "(Source: $CONFIG{'install-source'})\n" );
}
#