Update man page references for the new: mount.captive(8)
[captive.git] / src / client / sandbox-server / captive-sandbox-server.pod.pl.in
1 #! /usr/bin/perl
2
3 # $Id$
4 # perlpod(1) source for captive-cmdline(1) man page
5 # Copyright (C) 2003 Jan Kratochvil <project-captive@jankratochvil.net>
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; exactly version 2 of June 1991 is required
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 use vars qw($VERSION);
22 $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
23 use strict;
24 use warnings;
25
26
27 print <<'POD_EOF';
28 =head1 NAME
29
30 @PACKAGE@-sandbox-server - Security+safety wrapper for NTFS disk access
31
32
33 =head1 SYNOPSIS
34
35 B<@PACKAGE@-sandbox-server>
36
37
38 =head1 DESCRIPTION
39
40 Program implementing separation of emulated I<Microsoft Windows NT> kernel
41 environment from the rest of I<UNIX> system. Your system gets protected by
42 B<chroot>(2), B<setuid>(2), B<setgid>(2) and B<setrlimit>(2) UNIX security
43 features against malicious Microsoft Windows drivers.
44
45 Use this program as argument of B<--sandbox-server> option of B<@PACKAGE@>(7).
46 Do not use this option/program during B<@PACKAGE@>(7) debugging.
47
48
49 =head1 OPTIONS
50
51 No options are permitted for this command - it will display its I<CORBA/ORBit>
52 connection properties on its standard output.
53
54
55 =head1 SEE ALSO
56
57 B<@PACKAGE@>(7), B<@PACKAGE@-cmdline>(1), B<mount.@PACKAGE@>(8)
58
59
60 =head1 AUTHOR
61
62 Jan Kratochvil <B<project-@PACKAGE@@jankratochvil.net>>,
63                 I<http://www.jankratochvil.net/>
64 POD_EOF
65 1;