-
Notifications
You must be signed in to change notification settings - Fork 49
/
run.py
executable file
·38 lines (30 loc) · 1.04 KB
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python3
import sys
import os
import subprocess
from modules.common.printer import print_success,print_error
from modules.common import config
from modules.common import installer
def main():
if os.geteuid() != 0:
print_error("You must run this script as root!")
print_error("Run: sudo -E {0}".format(os.path.basename(__file__)))
sys.exit(1)
if os.getenv('PWD') is None:
print_error("You have to run this script with 'sudo -E'. You are probably missing the -E parameter.")
sys.exit(1)
config_file_location = None
if len(sys.argv) == 2:
if sys.argv[1] == '-g':
conf = config.Config(None)
conf.generate_config('setup_config.ini')
print_success("Configuration file generated: ./setup_config.ini")
sys.exit(0)
else:
config_file_location = sys.argv[1]
conf = config.Config(config_file_location)
conf.load_config()
install = installer.Installer(conf)
install.run()
if __name__ == '__main__':
main()