You've already forked Mailu
mirror of
https://github.com/Mailu/Mailu.git
synced 2025-11-25 22:12:28 +02:00
10 lines
268 B
Python
Executable File
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"])
|