File: ccs-checkpolicy

package info (click to toggle)
ccstools 1.7.2-20100401-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 984 kB
  • ctags: 1,080
  • sloc: ansic: 20,286; sh: 890; makefile: 80
file content (41 lines) | stat: -rwxr-xr-x 945 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
37
38
39
40
41
#! /bin/sh

if [ "$1" = "--version" ]
then
cat << EOF
ccs-checkpolicy 1.7.2

Copyright (C) 2005-2010 NTT DATA CORPORATION.

This program is free software; you may redistribute it under the terms of
the GNU General Public License. This program has absolutely no warranty.
EOF
elif [ "$1" = "--help" ]
then
cat << EOF
Usage: ccs-checkpolicy {e|d} < policy_to_check

This program validates TOMOYO Linux's policy.

 e     Interpret input as exception policy. ( /etc/ccs/exception_policy.conf )

 d     Interpret input as domain policy. ( /etc/ccs/domain_policy.conf )

Examples:

# ccs-checkpolicy e < /etc/ccs/exception_policy.conf
 Check for errors in exception policy.

# ccs-checkpolicy d < /etc/ccs/domain_policy.conf
 Check for errors in domain policy.

EOF
else
cat << EOF | help2man -i - -N -s 8 -n "TOMOYO Linux's policy validator" $0 | gzip -9 > man8/ccs-checkpolicy.8.gz
[AUTHORS]

 penguin-kernel _at_ I-love.SAKURA.ne.jp

EOF
fi
exit 0