File: create

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 (36 lines) | stat: -rwxr-xr-x 964 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/local/bin/perl -w

use blib;

use strict;
use AFS::BOS;

my ($server, $process, $type, $commands, @commands, $notifier, $bos, $ok);

die "Usage: $0 server process type commands [notifier]\n" if $#ARGV < 3;

$server   = shift;
$process  = shift;
$type     = shift;
$commands = shift;
$notifier = shift;

#warn ">$server< >$process< >$type< >$commands< >$notifier< \n";
if (defined $commands and $commands =~ / /) { @commands = split / /, $commands; }

$bos = AFS::BOS->new($server);
print "Error Code: $AFS::CODE\n" if ($AFS::CODE);

if (@commands) {
    if ($notifier) { $ok = $bos->create($process, $type, \@commands, $notifier); }
    else           { $ok = $bos->create($process, $type, \@commands); }
}
else {
    if ($notifier) { $ok = $bos->create($process, $type, $commands, $notifier); }
    else           { $ok = $bos->create($process, $type, $commands); }
}
print "Error Code: $AFS::CODE\n" if ($AFS::CODE);

print "OK = $ok \n";

$bos->DESTROY;