Func and OurSKMS – Part III -
March 20, 2009

Concretely, how does it work ?
1] You request the overlord to do some actions to minion #3 an #4.
2] The Overlord retrieve data from them.
3] Then show you the result via your console.
4] Save it in temporary tables on the minion which is dedicated to store that data – MySQL Database -.
What is the status today of that ? Well this is the first outputs :

N.B. The Binary value set to 1 means : It is a “column name“.
Func – module_loader.py -
March 9, 2009

Currently working on Func 0.24-1, I found that comment and following Python codes in the /usr/lib/python2.5/site-packages/func/module_loader.py at Line =~ 100 on Fedora 10
# FIXME: this is probably more complicated than it needs to be -akl
# aka, everything after the module_file_path
if basename[:8] == “__init__”:
modname = dirname
dirname = “”
elif basename[-3:] == “.py”:
modname = basename[:-3]
elif basename[-4:] in [".pyc", ".pyo"]:
modname = basename[:-4]
which could be remplaced by :
modname = dirname
dirname = “”
if basename[:8] != “__init__”:
mymodname =basename.split(‘.’)
modname=”.join(mymodname[:1])
Well, do not have the pretension to be better coder than Python developper however if I can help.