summaryrefslogtreecommitdiffstats
path: root/perl-install/network/nfs.pm
blob: 859e1e63dcc46a37764838fedccbc0dd88d78eca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package network::nfs;

use common;
use network::network;
use log;

sub check {
    my ($in) = @_;

    my $pkg = 'nfs-utils-clients';
    my $f = '/usr/sbin/showmount';
    if (! -e $f) {
	$in->ask_okcancel('', _("The package %s needs to be installed. Do you want to install it?", $pkg), 1) or return;
	$in->do_pkgs->install($pkg);
    }
    if (! -e $f) {
	$in->ask_warn('', _("Mandatory package %s is missing", $pkg));
	return;
    }
    1;
}


sub find_servers() {
    local *F;
    my $pid = open F, "rpcinfo-flushed -b mountd 2 |";
    $SIG{ALRM} = sub { kill(15, $pid) };
    alarm 1;

    my $domain = chomp_(`domainname`);
    my @servers;
    while (<F>) {
	chomp;
	my ($ip, $name) = /(\S+)\s+(\S+)/ or log::l("bad line in rpcinfo output"), next;
	$name =~ s/\Q.$domain//; 
	$name =~ s/\.$//;
	push @servers, { ip => $ip, if_($name ne '(unknown)', name => $name) };
    }
    @servers;
}

sub find_exports {
    my ($server) = @_;

    local *F;
    my $s = $server->{ip} || $server->{name};
    my $pid = open F, "showmount -e $s |";
    $SIG{ALRM} = sub { kill(15, $pid) };
    alarm 5;

    my (undef, @l) = <F>;
    map { /(\S+)\s*(\S+)/; { name => $1, comment => $2 } } @l;
}

1;