radvd: ensure existence of [/var]/run/radvd/ directory on startup

This commit is contained in:
Gabriel Somlo 2020-10-09 17:28:00 -04:00
parent 56e98f412c
commit c1864857e1

View file

@ -603,7 +603,7 @@ fi;
class RadvdService(UtilService):
name: str = "radvd"
configs: Tuple[str, ...] = ("/etc/radvd/radvd.conf",)
dirs: Tuple[str, ...] = ("/etc/radvd",)
dirs: Tuple[str, ...] = ("/etc/radvd", "/var/run/radvd",)
startup: Tuple[str, ...] = (
"radvd -C /etc/radvd/radvd.conf -m logfile -l /var/log/radvd.log",
)