diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-13 18:14:14 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-13 18:14:14 +0000 |
commit | 973652b323a6a045bac79f27856fbbb1a59fa9d2 (patch) | |
tree | dbd3044cb16b94f4437c74b2e0979560681c8270 /nisautofs_wizard | |
parent | 82c8b99e7f0a4a3d28f875ea8aa019d4b218324f (diff) | |
download | drakwizard-973652b323a6a045bac79f27856fbbb1a59fa9d2.tar drakwizard-973652b323a6a045bac79f27856fbbb1a59fa9d2.tar.gz drakwizard-973652b323a6a045bac79f27856fbbb1a59fa9d2.tar.bz2 drakwizard-973652b323a6a045bac79f27856fbbb1a59fa9d2.tar.xz drakwizard-973652b323a6a045bac79f27856fbbb1a59fa9d2.zip |
upcase protocol name!!!
Diffstat (limited to 'nisautofs_wizard')
-rw-r--r-- | nisautofs_wizard/Nisautofs.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nisautofs_wizard/Nisautofs.pm b/nisautofs_wizard/Nisautofs.pm index 0c732fba..1c4df3d6 100644 --- a/nisautofs_wizard/Nisautofs.pm +++ b/nisautofs_wizard/Nisautofs.pm @@ -73,7 +73,7 @@ my %level = ( $o->{pages} = { welcome => { - name => N("NIS server with autofs map") . "\n\n" . N("Setup a Nis server with autofs map, auto.home and auto.master files.") . "\n\n" . N("Client can automatically mount their home directory when they log on a NIS client computer network."), + name => N("NIS server with autofs map") . "\n\n" . N("Setup a NIS server with autofs map, auto.home and auto.master files.") . "\n\n" . N("Client can automatically mount their home directory when they log on a NIS client computer network."), no_back => 1, pre => sub { $o->{var}{wiz_level} ||= 1 }, post => sub { if ($o->{var}{wiz_level} == 2) { @@ -109,7 +109,7 @@ $o->{pages} = { { label => N("NIS server:"), fixed_val => \$HOST }, { label => N("Home NIS:"), fixed_val => \$o->{var}{HOMENIS} }, { label => N("NIS domainname:"), fixed_val => \$o->{var}{NISDOMAIN} }, - { label => N("Nis directory:"), fixed_val => \$o->{var}{NIS_DIRMAKEFILE} }, + { label => N("NIS directory:"), fixed_val => \$o->{var}{NIS_DIRMAKEFILE} }, { label => N("Network File:"), fixed_val => \$o->{var}{NETWORKFILE} }, { label => N("Nfs exports:"), fixed_val => \$o->{var}{NFSEXPORTS} }, { label => N("Auto master:"), fixed_val => \$o->{var}{AUTOMASTER} }, @@ -335,7 +335,7 @@ sub do_it_server { sub do_it_client { return if $::testing; my $in = 'interactive'->vnew('su', 'nisautofsclient'); - my $w = $in->wait_message(N("Nis Client"), N("Configuring your system as Nis Client ...")); + my $w = $in->wait_message(N("NIS Client"), N("Configuring your system as NIS Client ...")); uninstall_rpm('ypserv'); system("urpmi --auto-select --auto autofs"); test_autofile(); |