diff options
author | Doug Kearns <dkearns@users.sourceforge.net> | 2010-06-06 13:44:11 +0000 |
---|---|---|
committer | Doug Kearns <dkearns@users.sourceforge.net> | 2010-06-06 13:44:11 +0000 |
commit | a54fdc70be299a203a51d69c4e823f209a4c06ca (patch) | |
tree | 6d1c67674d388e1ca64c4210e283d1bd11eea2c7 /Completion/BSD/Command/_pfctl | |
parent | 4ad0a25af110e2afe956bce13e901f78fd9e6bcd (diff) | |
download | zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.gz zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.xz zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.zip |
unposted: fix incorrectly capitalized completion descriptions
Diffstat (limited to 'Completion/BSD/Command/_pfctl')
-rw-r--r-- | Completion/BSD/Command/_pfctl | 132 |
1 files changed, 66 insertions, 66 deletions
diff --git a/Completion/BSD/Command/_pfctl b/Completion/BSD/Command/_pfctl index bb185f463..1a2345b66 100644 --- a/Completion/BSD/Command/_pfctl +++ b/Completion/BSD/Command/_pfctl @@ -3,56 +3,56 @@ local pfctl_flush_modifiers pfctl_optimizer_level pfctl_show_modifiers pfctl_tables_command pfctl_debug_level pfctl_flush_modifiers=( - 'all:Flush all' - 'info:Flush the filter information' - 'nat:Flush the NAT rules' - 'osfp:Flush the passive operating system fingerprints' - 'queue:Flush the queue rules' - 'rules:Flush the filter rules' - 'state:Flush the stable table' - 'Sources:Flush the source tracking table' - 'Tables:Flush the tables' + 'all:flush all' + 'info:flush the filter information' + 'nat:flush the NAT rules' + 'osfp:flush the passive operating system fingerprints' + 'queue:flush the queue rules' + 'rules:flush the filter rules' + 'state:flush the stable table' + 'Sources:flush the source tracking table' + 'Tables:flush the tables' ) pfctl_show_modifiers=( - 'nat:Show the currently loaded NAT rules' - 'queue:Show the currently loaded queue rules' - 'rules:Show the currently loaded filter rules' - 'Anchors:Show the currently loaded anchors directly attached to the main ruleset' - 'state:Show the contents of the state table' - 'Sources:Show the contents of the source tracking table' - 'info:Show filter information' - 'labels:Show per-rule statistics of filter rules with labels' - 'timeouts:Show the current global timeouts' - 'memory:Show the current pool memory hard limits' - 'Tables:Show the list of tables' - 'osfp:Show the list of operating system fingerprints' - 'Interfaces:Show the list of interfaces and interface drivers available to PF' - 'all:Show all except for the lists of interfaces and operating system fingerprints' + 'nat:show the currently loaded NAT rules' + 'queue:show the currently loaded queue rules' + 'rules:show the currently loaded filter rules' + 'Anchors:show the currently loaded anchors directly attached to the main ruleset' + 'state:show the contents of the state table' + 'Sources:show the contents of the source tracking table' + 'info:show filter information' + 'labels:show per-rule statistics of filter rules with labels' + 'timeouts:show the current global timeouts' + 'memory:show the current pool memory hard limits' + 'Tables:show the list of tables' + 'osfp:show the list of operating system fingerprints' + 'Interfaces:show the list of interfaces and interface drivers available to PF' + 'all:show all except for the lists of interfaces and operating system fingerprints' ) pfctl_optimizer_level=( - 'none:Disable the ruleset optimizer' - 'basic:Enable basic ruleset optimizations' - 'profile:Enable basic ruleset optimizations with profiling' + 'none:disable the ruleset optimizer' + 'basic:enable basic ruleset optimizations' + 'profile:enable basic ruleset optimizations with profiling' ) pfctl_tables_command=( - 'kill:Kill a table' - 'flush:Flush all addresses of a table' - 'add:Add one or more addresses in a table' - 'delete:Delete one or more addresses from a table' - 'expire:Delete addresses which had their statistics cleared more than number seconds ago' - 'replace:Replace the addresses of the table' - 'show:Show the content (addresses) of a table' - 'test:Test if the given addresses match a table' - 'zero:Clear all the statistics of a table' - 'load:Load only the table definitions from pf.conf(5)' + 'kill:kill a table' + 'flush:flush all addresses of a table' + 'add:add one or more addresses in a table' + 'delete:delete one or more addresses from a table' + 'expire:delete addresses which had their statistics cleared more than number seconds ago' + 'replace:replace the addresses of the table' + 'show:show the content (addresses) of a table' + 'test:test if the given addresses match a table' + 'zero:clear all the statistics of a table' + 'load:load only the table definitions from pf.conf(5)' ) pfctl_debug_level=( - "none:Don\'t generate debug messages" - 'urgent:Generate debug messages only for serious errors' - 'misc:Generate debug messages for various errors' - 'loud:Generate debug messages for common conditions' + "none:don\'t generate debug messages" + 'urgent:generate debug messages only for serious errors' + 'misc:generate debug messages for various errors' + 'loud:generate debug messages for common conditions' ) _iface() { local pfctl_iface @@ -68,29 +68,29 @@ _tables() { # Missing -a # _arguments -s \ - '-F[Flush the filter parameters specified by modifier]:modifier:(($pfctl_flush_modifiers))' \ - '-A[Load only the queue rules present in the rule file]' \ - '-D[Define macro to be set to value]:macro:' \ - '-d[Disable the packet filter]' \ - '-e[Enable the packet filter]' \ - '-f[Load the rules contained in a file]:configuration file:_files' \ - '-g[Include output helpful for debugging]' \ - '-h[Help]' \ - '-i[Restrict the operation to the given interface]:interface:_iface' \ - '-K[Kill all of the source tracking entries originating from the specified host or network]:host or network:_hosts' \ - '-k[Kill all of the state entries originating from the specified host or network]:host or network:_hosts' \ - '-m[Merge in explicitly given options]' \ - '-N[Load only the NAT rules present in the rule file]' \ - '-n[Do not actually load rules, just parse them]' \ - '-O[Load only the options present in the rule file]' \ - '-o[Control the ruleset optimizer]:level:(($pfctl_optimizer_level))' \ - '-p[Use the device file device instead of the default /dev/pf]:device:_files' \ - '-q[Only print errors and warnings]' \ - '-R[Load only the filter rules present in the rule file]' \ - '-r[Perform reverse DNS lookups on states when displaying them]' \ - '-s[Show the filter parameters specified by modifier]:modifier:(($pfctl_show_modifiers ))' \ - '-T[Specify the command to apply to the table]:command:(($pfctl_tables_command))' \ - '-t[Specify the name of the table]:table:_tables' \ - '-v[Produce more verbose output]' \ - '-x[Set the debug level]:debug level:(($pfctl_debug_level))' \ - '-z[Clear per-rule statistics]' + '-F[flush the filter parameters specified by modifier]:modifier:(($pfctl_flush_modifiers))' \ + '-A[load only the queue rules present in the rule file]' \ + '-D[define macro to be set to value]:macro:' \ + '-d[disable the packet filter]' \ + '-e[enable the packet filter]' \ + '-f[load the rules contained in a file]:configuration file:_files' \ + '-g[include output helpful for debugging]' \ + '-h[help]' \ + '-i[restrict the operation to the given interface]:interface:_iface' \ + '-K[kill all of the source tracking entries originating from the specified host or network]:host or network:_hosts' \ + '-k[kill all of the state entries originating from the specified host or network]:host or network:_hosts' \ + '-m[merge in explicitly given options]' \ + '-N[load only the NAT rules present in the rule file]' \ + '-n[do not actually load rules, just parse them]' \ + '-O[load only the options present in the rule file]' \ + '-o[control the ruleset optimizer]:level:(($pfctl_optimizer_level))' \ + '-p[use the device file device instead of the default /dev/pf]:device:_files' \ + '-q[only print errors and warnings]' \ + '-R[load only the filter rules present in the rule file]' \ + '-r[perform reverse DNS lookups on states when displaying them]' \ + '-s[show the filter parameters specified by modifier]:modifier:(($pfctl_show_modifiers ))' \ + '-T[specify the command to apply to the table]:command:(($pfctl_tables_command))' \ + '-t[specify the name of the table]:table:_tables' \ + '-v[produce more verbose output]' \ + '-x[set the debug level]:debug level:(($pfctl_debug_level))' \ + '-z[clear per-rule statistics]' |