Merge pull request #517 from gsomlo/gls-frr-dir

radvd: ensure existence of [/var]/run/radvd/ directory on startup
This commit is contained in:
bharnden 2020-10-17 10:23:09 -07:00 committed by GitHub
commit c25cb3d657
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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",
)