blob: 5987705ac3a58e13ff335b5923a5d9c534105633 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
from src.ogClient import *
from src.ogConfig import *
from signal import signal, SIGPIPE, SIG_DFL
def main():
signal(SIGPIPE, SIG_DFL)
ogconfig = ogConfig()
if (not ogconfig.parserFile('cfg/ogagent.cfg')):
print ('Error: Parsing configuration file')
return 0
ip = ogconfig.getValueSection('opengnsys', 'ip')
port = ogconfig.getValueSection('opengnsys', 'port')
client = ogClient(ip, int(port))
client.connect()
client.run()
if __name__ == "__main__":
main()
|