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.
18 lines
461 B
Python
18 lines
461 B
Python
#!/usr/bin/python
|
|
|
|
import jinja2
|
|
import os
|
|
import socket
|
|
import glob
|
|
|
|
convert = lambda src, dst: open(dst, "w").write(jinja2.Template(open(src).read()).render(**os.environ))
|
|
|
|
# Actual startup script
|
|
os.environ["FRONT_ADDRESS"] = socket.gethostbyname("front")
|
|
|
|
for rspamd_file in glob.glob("/conf/*"):
|
|
convert(rspamd_file, os.path.join("/etc/rspamd/local.d", os.path.basename(rspamd_file)))
|
|
|
|
# Run rspamd
|
|
os.execv("/usr/sbin/rspamd", ["rspamd", "-i", "-f"])
|