mirror of
https://github.com/Mailu/Mailu.git
synced 2025-02-09 13:23:54 +02:00
13 lines
267 B
Python
Executable File
13 lines
267 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import logging as log
|
|
import sys
|
|
from socrate import conf, system
|
|
|
|
system.set_env()
|
|
|
|
conf.jinja("/unbound.conf", os.environ, "/etc/unbound/unbound.conf")
|
|
|
|
os.execv("/usr/sbin/unbound", ["unbound", "-c", "/etc/unbound/unbound.conf"])
|