forked from LionNatsu/hilldust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.py
executable file
·33 lines (27 loc) · 1.25 KB
/
install.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
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
import argparse
from pathlib import Path
import subprocess
def main():
# Parse arguments
parser = argparse.ArgumentParser(description="Installer of systemd service.")
parser.add_argument("-c", dest="config", required=True, help="Path of the configuration file.")
parser.add_argument("--python", dest="python", default="/usr/bin/python3", help="Path of the python.")
args = parser.parse_args()
# Project root directory
basedir = Path(__file__).parent.resolve()
# Install the systemd service and replace the relevant variables
inputFile = basedir.joinpath("systemd/hilldustWrapper.service")
inputContent = Path(inputFile).read_text()
inputContent = inputContent.replace("PYTHON_PATH", args.python)
inputContent = inputContent.replace("SCRIPT_PATH", str(basedir.joinpath("hilldustWrapper.py")))
inputContent = inputContent.replace("CONFIG_PATH", args.config)
f = open("/etc/systemd/system/hilldustWrapper.service", "w")
f.write(inputContent)
f.close()
# Enable and start the service
subprocess.check_call("systemctl daemon-reload", shell=True)
subprocess.check_call("systemctl enable hilldustWrapper --now", shell=True)
if __name__ == "__main__":
main()