initscript knows how to initialize db
[sfa.git] / sfa / util / version.py.in
1 ### updated by the toplevel Makefile
2 version_tag="@VERSIONTAG@"
3 scm_url="@SCMURL@"
4 import socket
5  
6 def version_core (more={}):
7     core = { 'geni_api':1,
8              'sfa' : 1,
9              'code_tag' : version_tag,
10              'code_url' : scm_url,
11              'hostname' : socket.gethostname(),
12              }
13     core.update(more)
14     return core