File: ccs-editpolicy-agent

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 (56 lines) | stat: -rwxr-xr-x 1,423 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#! /bin/sh

if [ "$1" = "--version" ]
then
cat << EOF
ccs-editpolicy-agent 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-editpolicy-agent listen_ip:listen_port

This is an agent program for ccs-editpolicy ccs-loadpolicy ccs-savepolicy ccs-ccstree ccs-queryd ccs-auditd .

 listen_ip:listen_port     Listen at specified IP address and port number. 

Examples:

# ccs-editpolicy-agent 192.168.1.1:10000
 Listen at 192.168.1.1 port 10000 .

EOF
else
cat << EOF | help2man -i - -N -s 8 -n "Agent for editing TOMOYO Linux's policy" $0 | gzip -9 > man8/ccs-editpolicy-agent.8.gz
[SEE ALSO]

 ccs-editpolicy (8)
 ccs-loadpolicy (8)
 ccs-savepolicy (8)
 ccs-pstree (8)
 ccs-queryd (8)
 ccs-auditd (8)

[NOTES]

 Don't run this program unless you know what you are doing.

 This program allows anonymous users to edit policy. No user authentication is performed.

 This program is designed for systems which running ccs-editpolicy is difficult due to resource limitation.
 This program is not designed for PC and servers.

 You need to register either path to this program or a domain for this program in /proc/ccs/manager before invoking this program.

[AUTHORS]

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

EOF
fi
exit 0