From 8e854d5c2ed9dc6297598f064450beb8cd99da5f Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Thu, 23 Feb 2006 09:24:00 +0000 Subject: rename config hash as it will contain more settings --- perl-install/standalone/finish-install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/standalone/finish-install') diff --git a/perl-install/standalone/finish-install b/perl-install/standalone/finish-install index 85ab006ee..02f0b5310 100755 --- a/perl-install/standalone/finish-install +++ b/perl-install/standalone/finish-install @@ -12,7 +12,7 @@ use security::level; $ENV{SHARE_PATH} ||= "/usr/share"; my $conf_file = '/etc/sysconfig/finish-install'; -my %steps = getVarsFromSh($conf_file); +my %conf = getVarsFromSh($conf_file); my $authentication = authentication::get(); my $security = security::level::get(); my $net = {}; @@ -81,7 +81,7 @@ sub ask_users() { sub call { my ($step_name) = @_; my $f_name = 'ask_' . $step_name; - if (member('no', map { lc($steps{$_}) } lc($step_name), uc($step_name))) { + if (member('no', map { lc($conf{$_}) } lc($step_name), uc($step_name))) { log::l("ignoring $f_name"); } else { log::l("calling $f_name"); -- cgit v1.2.1