File: setrestricted

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 (30 lines) | stat: -rwxr-xr-x 743 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
#!/usr/local/bin/perl -w

use blib;

use strict;
use AFS::BOS;

my ($server, $cellname, $bos);

die "Usage: $0 server [cell]\n" if $#ARGV < 0;

$server   = shift;
$cellname = shift;

if ($cellname) { $bos = AFS::BOS->new($server, 0, 0, $cellname); }
else           { $bos = AFS::BOS->new($server); }
print "Error Code-1: $AFS::CODE\n" if ($AFS::CODE);

my $mode = $bos->getrestricted;     # save old mode

my $ok = $bos->setrestricted(1);    # switch it on
print "Error Code-2: $AFS::CODE\n" if ($AFS::CODE);

$ok = $bos->setrestricted(0);       # switch it off
print "Error Code-3: $AFS::CODE\n" if ($AFS::CODE);

$ok = $bos->setrestricted($mode);    # reset it to old mode
print "Error Code-4: $AFS::CODE\n" if ($AFS::CODE);

$bos->DESTROY;