SYNOPSIS
ccs-patternize pattern [pattern ...] < old_domain_policy > new_domain_policyDESCRIPTION
This program reads domain policy from standard input and replaces pathnames with patterns if the pathname matches to patterns given at commandline and writes to standard output.Pathnames for execute permission and domainnames won't be replaced.
EXAMPLES
# ccs-patternize '/tmp/php\?\?\?\?\?\?' < /etc/ccs/domain_policy.conf > /etc/ccs/domain_policy2.conf
- Replace pathnames that match /tmp/php\?\?\?\?\?\? pattern with /tmp/php\?\?\?\?\?\? .
# ccs-patternize 'file_pattern /tmp/php\?\?\?\?\?\?' < /etc/ccs/domain_policy.conf > /etc/ccs/domain_policy2.conf
- Replace pathnames that match /tmp/php\?\?\?\?\?\? pattern with /tmp/php\?\?\?\?\?\? .
# ccs-patternize 'path_group GROUP1 /tmp/php\?\?\?\?\?\?' < /etc/ccs/domain_policy.conf > /etc/ccs/domain_policy2.conf
- Replace pathnames that match /tmp/php\?\?\?\?\?\? pattern with @GROUP1.
# ccs-patternize 'number_group GROUP2 0-100' 'number_group GROUP2 100-200'< /etc/ccs/domain_policy.conf > /etc/ccs/domain_policy2.conf
- Replace integers between 0-100 or 100-200 with @GROUP2 .
# ccs-patternize 'address_group LOCALHOST 127.0.0.1' 'address_group LOCALHOST 0:0:0:0:0:0:0:1' < /etc/ccs/domain_policy.conf > /etc/ccs/domain_policy2.conf
- Replace ip addresses 127.0.0.1 or 0:0:0:0:0:0:0:1 with @LOCALHOST.
AUTHORS
penguin-kernel _at_ I-love.SAKURA.ne.jp
COPYRIGHT
Copyright © 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.