File: mkmount

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 (22 lines) | stat: -rwxr-xr-x 543 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/local/bin/perl -w

use blib;
use AFS::FS qw(mkmount);

my ($mountp, $volume, $rw, $cell, $ok);

die "Usage: $0 mountp volume [rw [cell]]\n" if ($#ARGV < 1);

$mountp = shift;
$volume = shift;
$rw     = shift;
$cell   = shift;

#warn ">$mountp< >$volume< >$rw< >$cell< \n";

if (defined $cell)  { $ok  = mkmount($mountp, $volume, $rw, $cell); }
elsif (defined $rw) { $ok  = mkmount($mountp, $volume, $rw); }
else                { $ok  = mkmount($mountp, $volume); }

print "Error Code: $AFS::CODE\n" if ($AFS::CODE);
print "ok = $ok\n";