~ubuntu-branches/ubuntu/precise/gozerbot/precise

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
#
#

import sys, os
sys.path.insert(0, os.getcwd())

try:
    from gozerbot.datadir import makedirs
    makedirs()
    from gozerbot.config import writeconfig
    writeconfig()
except Exception, ex:
    print ex
    os._exit(1)

os._exit(0)