diff options
Diffstat (limited to 'nisautofs_wizard/Nisautofs.pm')
-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(); |