Implemented an option for capisuite-checkconfig to test whether

capisuite is configured. This test is used in rc.capisuite.in (where
is has been implemented).


git-svn-id: https://svn.ibp.de/svn/capisuite/trunk/capisuite@413 4ebea2bb-67d4-0310-8558-a5799e421b66
This commit is contained in:
htgoebel 2005-01-20 18:26:19 +00:00
parent af0aa59638
commit 193c95268c
3 changed files with 108 additions and 26 deletions

View File

@ -82,23 +82,9 @@ case "$1" in
# answering machine. Otherwise exit. # answering machine. Otherwise exit.
# IMPORTANT: Change this or comment it out if you want to use # IMPORTANT: Change this or comment it out if you want to use
# your own CapiSuite scripts. # your own CapiSuite scripts.
# todo: change these tests since they are not longer valid due to if [ ! @sbindir@/capisuite-checkconfig -t >/dev/null ] ; then
# [Mail...] sections. Consider using capisuite-checkconfig! configured=no
while read -r sec rest ; do fi
if [ "${sec:0:1}" = "[" -a "$sec" != "[GLOBAL]" ]; then
configured_fax=yes
break
fi
done < <(cat @pkgsysconfdir@/fax.conf)
while read -r sec rest ; do
if [ "${sec:0:1}" = "[" -a "$sec" != "[GLOBAL]" ]; then
configured_voice=yes
break
fi
done < <(cat @pkgsysconfdir@/answering_machine.conf)
test "$configured_fax" -o "$configured_voice" || configured=no
# end check for configured users
## Start daemon with startproc(8). If this fails ## Start daemon with startproc(8). If this fails
## the return value is set appropriately by startproc. ## the return value is set appropriately by startproc.
if [ $configured = "yes" ]; then if [ $configured = "yes" ]; then

View File

@ -17,8 +17,10 @@ user_scripts = [env.FileSubst('capisuitefax', 'capisuitefax.in'),]
env.AddPostAction(user_scripts, Chmod('$TARGETS', 0755)) env.AddPostAction(user_scripts, Chmod('$TARGETS', 0755))
# these are meant to be used by the admin # these are meant to be used by the admin
sbin_scripts = [File('capisuite-checkconfig'),] sbin_scripts = [
#env.AddPostAction(sbin_scripts, Chmod('$TARGETS', 0755)) env.FileSubst('capisuite-checkconfig', 'capisuite-checkconfig.in'),
]
env.AddPostAction(sbin_scripts, Chmod('$TARGETS', 0755))
# config files # config files
configs = [ configs = [

View File

@ -1,6 +1,32 @@
#!/usr/bin/python #!/usr/bin/python
"""capisuite-checkconfig - capisuite tool for checking config files
import sys, os, os.path Usage:
capisuite-checkconfig
Check some parameters and print content of config.
capisuite-checkconfig file1 [file2...]
Print contents of the given config files.
capisuite-checkconfig -t
Test if capisuite is configured (returns non zero if not).
capisuite-checkconfig [ -h | --help ]
Print this usage information.
"""
__author__ = "Hartmut Goebel <h.goebel@crazy-compilers.com>"
__copyright__ = "Copyright (c) 2004-2005 by Hartmut Goebel"
__version__ = "$Revision: 0.0 $"
__credits__ = "This is part of www.capisuite.de; thanks to Gernot Hillier"
__license__ = """
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
"""
import sys, os, getopt
def error(*msgs): def error(*msgs):
for m in msgs: for m in msgs:
@ -15,8 +41,7 @@ try:
except Exception, e: except Exception, e:
error("failed to import capisuite's python modules", str(e)) error("failed to import capisuite's python modules", str(e))
# Some helper functions, if you don't know what they do, just skip to
# Sompe helper functions, if you don't know what they do, just skip to
# the easy part # the easy part
def test_nextfile(user, path, queue, prefix): def test_nextfile(user, path, queue, prefix):
@ -106,12 +131,81 @@ def checkGlobalConfig(file=None):
print "Rerun as 'root' to create them." print "Rerun as 'root' to create them."
print print
def do_test_if_configured():
"""
Test whether capisuite is configured. This includes:
- config files must exist
- Some sections must exist
- at least one user must be configured in fax and voice config
- ... further tests to come
"""
def test_configfile(filename, required_sections):
cfg = capisuite.config.CSConfigParser()
try:
config = cfg.read(filename)
except IOError, err:
print >> sys.stderr, "ERROR: Can't read", filename
return 0
all_sections = cfg.sections()
for sect in required_sections:
if not sect in all_sections:
print >> sys.stderr, "Missing section", sect, "in", filename
return 0
for sect in all_sections:
if not sect in required_sections:
return 1
print >> sys.stderr, "Warning: Missing a user section in", filename
return 0
# Read global configuration
#try:
# config = capisuite.config.readConfig(configfile)
#except IOError, err:
# return 10
configured_fax = \
test_configfile(os.path.join("@pkgsysconfdir@", "fax.conf"),
('GLOBAL',
'MailFaxReceived', 'MailFaxSent', 'MailFaxFailed'))
configured_voice = \
test_configfile(os.path.join("@pkgsysconfdir@", "answering_machine.conf"),
('GLOBAL', 'MailVoiceReceived'))
return configured_fax or configured_voice
#----------- usage -----------#
def usage(error=''):
print __doc__
if error:
print
print "ERROR:", error
sys.exit(1)
#----------- main -----------# #----------- main -----------#
if len(sys.argv) == 1: test_if_configured = 0
try:
opts, args = getopt.getopt(sys.argv[1:], "c:t", ['config=','test'])
except getopt.GetoptError, e:
usage(e.msg)
sys.exit(1)
for option, param in opts:
# commands
if option in ('-h','--help'): usage()
elif option in ('-t','--test'): test_if_configured = 1
if test_if_configured:
if not do_test_if_configured():
print 'capisuite seams to be not configured!'
sys.exit(10)
else:
print 'capisuite seams to be configured!'
sys.exit(0)
elif len(args) == 0:
checkGlobalConfig() checkGlobalConfig()
elif 0:
checkGlobalConfig(sys.argv[1])
else: else:
config = capisuite.config.readGlobalConfig(sys.argv[1]) config = capisuite.config.readGlobalConfig(sys.argv[1])
sections = config.sections() sections = config.sections()
@ -125,7 +219,7 @@ else:
print print
print 'known users:', print 'known users:',
print config.listUsers() print config.listUsers()
# todo: these checks: # todo: these checks:
# - are all users valid system users? # - are all users valid system users?
# - do all voice-users have 'voice_delay' set? # - do all voice-users have 'voice_delay' set?
# - option --configured to chekc if any fax or voice user is configured