File: getcellinfo

package info (click to toggle)
libafs-perl 2.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,244 kB
  • ctags: 268
  • sloc: perl: 5,159; ansic: 135; sh: 36; makefile: 7
file content (18 lines) | stat: -rwxr-xr-x 334 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/local/bin/perl -w

use blib;
use AFS::Cell qw (getcellinfo);

die "Usage: $0 cellname ip_flg \n" if $#ARGV != 1;

my $c = shift;
my $ip = shift;

my ($cell, @hosts) = getcellinfo($c, $ip);
print "AFS::CODE = $AFS::CODE \n";
if (defined $cell) {
    print "Cell: $cell\n";
}
foreach my $host (@hosts) {
    print(" $host\n");
}