Files
Mailu/services/unbound/start.py
2018-10-31 19:17:23 +02:00

10 lines
268 B
Python
Executable File

#!/usr/bin/python3
import jinja2
import os
convert = lambda src, dst: open(dst, "w").write(jinja2.Template(open(src).read()).render(**os.environ))
convert("/unbound.conf", "/etc/unbound/unbound.conf")
os.execv("/usr/sbin/unbound", ["-c /etc/unbound/unbound.conf"])