From 9d6a591aa7db7124c6597b71add606a956efe27f Mon Sep 17 00:00:00 2001 From: Cyril Jaquier Date: Mon, 29 Jan 2007 20:27:51 +0000 Subject: [PATCH] - Changed case of titles git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@529 a942ae1a-1317-0410-a47c-b1dcaea8d605 --- common/protocol.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/common/protocol.py b/common/protocol.py index 543e08e4..85d4947b 100644 --- a/common/protocol.py +++ b/common/protocol.py @@ -30,23 +30,23 @@ import textwrap # Describes the protocol used to communicate with the server. protocol = [ -['', "Basic", ""], +['', "BASIC", ""], ["start", "starts the server and the jails"], ["reload", "reloads the configuration"], ["stop", "stops all jails and terminate the server"], ["status", "gets the current status of the server"], ["ping", "tests if the server is alive"], -['', "Logging", ""], +['', "LOGGING", ""], ["set loglevel ", "sets logging level to . 0 is minimal, 4 is debug"], ["get loglevel", "gets the logging level"], ["set logtarget ", "sets logging target to . Can be STDOUT, STDERR, SYSLOG or a file"], ["get logtarget", "gets logging target"], -['', "Jail control", ""], +['', "JAIL CONTROL", ""], ["add ", "creates using "], ["start ", "starts the jail "], ["stop ", "stops the jail . The jail is removed"], ["status ", "gets the current status of "], -['', "Jail configuration", ""], +['', "JAIL CONFIGURATION", ""], ["set idle on|off", "sets the idle state of "], ["set addignoreip ", "adds to the ignore list of "], ["set delignoreip ", "removes from the ignore list of "], @@ -70,7 +70,7 @@ protocol = [ ["set actioncheck ", "sets the check command of the action for "], ["set actionban ", "sets the ban command of the action for "], ["set actionunban ", "sets the unban command of the action for "], -['', "Jail information", ""], +['', "JAIL INFORMATION", ""], ["get logpath", "gets the list of the monitored files for "], ["get ignoreip", "gets the list of ignored IP addresses for "], ["get timeregex", "gets the regular expression used for the time detection for "],