You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
274 B
Python
10 lines
274 B
Python
6 years ago
|
#!/usr/local/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"])
|