[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[minion-cvs] Remove deprecated option
Update of /home/minion/cvsroot/src/minion/lib/mixminion/server
In directory moria.mit.edu:/tmp/cvs-serv9521/lib/mixminion/server
Modified Files:
ServerConfig.py
Log Message:
Remove deprecated option
Index: ServerConfig.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/lib/mixminion/server/ServerConfig.py,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- ServerConfig.py 29 May 2003 01:46:45 -0000 1.27
+++ ServerConfig.py 29 May 2003 05:46:35 -0000 1.28
@@ -60,9 +60,6 @@
if server['PublicKeyOverlap'].getSeconds() > 6*60*60:
raise ConfigError("PublicKeyOverlap must be <= 6 hours")
- if _haveEntry(self, 'Server', 'NoDaemon'):
- LOG.warn("The NoDaemon option is obsolete. Use Daemon instead.")
-
if _haveEntry(self, 'Server', 'Mode'):
LOG.warn("Mode specification is not yet supported.")
@@ -239,8 +236,6 @@
'LogLevel' : ('ALLOW', C._parseSeverity, "WARN"),
'EchoMessages' : ('ALLOW', C._parseBoolean, "no"),
'Daemon' : ('ALLOW', C._parseBoolean, "no"),
- # Deprecated.
- 'NoDaemon' : ('ALLOW', C._parseBoolean, None),
'LogStats' : ('ALLOW', C._parseBoolean, 'yes'),
'StatsInterval' : ('ALLOW', C._parseInterval,
"1 day"),