updated radvd config service to match recent change to radvd standard service
This commit is contained in:
parent
c25cb3d657
commit
4e79865035
2 changed files with 2 additions and 2 deletions
|
@ -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] = []
|
||||
|
|
|
@ -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",
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue