summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/finish-install
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2008-09-10 16:13:41 +0000
committerOlivier Blin <oblin@mandriva.com>2008-09-10 16:13:41 +0000
commit2cad2621c96beeae2b4eb9cab177f5666b0ce3c1 (patch)
treee680b716de378754b8132e7feae8b22fff8471bc /perl-install/standalone/finish-install
parenta9b968f009260d50ef128ba0ee69001efb495418 (diff)
downloaddrakx-backup-do-not-use-2cad2621c96beeae2b4eb9cab177f5666b0ce3c1.tar
drakx-backup-do-not-use-2cad2621c96beeae2b4eb9cab177f5666b0ce3c1.tar.gz
drakx-backup-do-not-use-2cad2621c96beeae2b4eb9cab177f5666b0ce3c1.tar.bz2
drakx-backup-do-not-use-2cad2621c96beeae2b4eb9cab177f5666b0ce3c1.tar.xz
drakx-backup-do-not-use-2cad2621c96beeae2b4eb9cab177f5666b0ce3c1.zip
guess country from timezone without asking if COUNTRY is set to
"simplified" in the configuration file (#23303)
Diffstat (limited to 'perl-install/standalone/finish-install')
-rwxr-xr-xperl-install/standalone/finish-install3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/standalone/finish-install b/perl-install/standalone/finish-install
index b05ac19b0..c3d592faa 100755
--- a/perl-install/standalone/finish-install
+++ b/perl-install/standalone/finish-install
@@ -75,6 +75,7 @@ sub ask_timezone() {
timezone::reload_sys_clock($timezone);
}
+#- COUNTRY=simplified: guess the country from timezone, do not ask
sub ask_country() {
require lang;
$locale ||= lang::read();
@@ -88,7 +89,7 @@ sub ask_country() {
}
}
}
- any::selectCountry($in, $locale);
+ any::selectCountry($in, $locale) if lc(get_conf('COUNTRY')) ne 'simplified';
lang::write_and_install($locale, $in->do_pkgs);
}