From 4e79865035c3fdd6ae3b45782dc86f20231dad7e Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Wed, 7 Oct 2020 15:28:04 -0700 Subject: [PATCH] updated radvd config service to match recent change to radvd standard service --- daemon/core/configservices/utilservices/services.py | 2 +- daemon/core/services/utility.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/core/configservices/utilservices/services.py b/daemon/core/configservices/utilservices/services.py index 9b3369db..633da333 100644 --- a/daemon/core/configservices/utilservices/services.py +++ b/daemon/core/configservices/utilservices/services.py @@ -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] = [] diff --git a/daemon/core/services/utility.py b/daemon/core/services/utility.py index d1788163..d7bd2edb 100644 --- a/daemon/core/services/utility.py +++ b/daemon/core/services/utility.py @@ -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", )