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

@ -603,7 +603,7 @@ fi;
class RadvdService(UtilService):
name: str = "radvd"
configs: Tuple[str, ...] = ("/etc/radvd/radvd.conf",)
dirs: Tuple[str, ...] = ("/etc/radvd", "/var/run/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",
)