updated radvd config service to match recent change to radvd standard service

This commit is contained in:
Blake Harnden 2020-10-07 15:28:04 -07:00
parent c25cb3d657
commit 4e79865035
2 changed files with 2 additions and 2 deletions

View file

@ -217,7 +217,7 @@ class PcapService(ConfigService):
class RadvdService(ConfigService):
name: str = "radvd"
group: str = GROUP_NAME
directories: List[str] = ["/etc/radvd"]
directories: List[str] = ["/etc/radvd", "/var/run/radvd"]
files: List[str] = ["/etc/radvd/radvd.conf"]
executables: List[str] = ["radvd"]
dependencies: List[str] = []