summaryrefslogtreecommitdiff
path: root/kvmd/apps/otgnet/__init__.py
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2021-02-16 09:07:51 +0300
committerDevaev Maxim <[email protected]>2021-02-16 09:07:51 +0300
commit3e289262f8a08042cd81eb7ebd8b75404020d945 (patch)
treebc46b8eea354d2e1e9544ac7f3595200e1c7d220 /kvmd/apps/otgnet/__init__.py
parent70fb46d4287e33d34dbf72156372a5c55cb273f7 (diff)
additional cmd options
Diffstat (limited to 'kvmd/apps/otgnet/__init__.py')
-rw-r--r--kvmd/apps/otgnet/__init__.py16
1 files changed, 12 insertions, 4 deletions
diff --git a/kvmd/apps/otgnet/__init__.py b/kvmd/apps/otgnet/__init__.py
index d3b32549..ac5b007e 100644
--- a/kvmd/apps/otgnet/__init__.py
+++ b/kvmd/apps/otgnet/__init__.py
@@ -35,6 +35,7 @@ from ...logging import get_logger
from ...yamlconf import Section
from ... import env
+from ... import tools
from ... import aioproc
from .. import init
@@ -74,10 +75,17 @@ class _Service: # pylint: disable=too-many-instance-attributes
self.__forward_iface: str = config.otgnet.firewall.forward_iface
self.__iptables_cmd: List[str] = config.otgnet.firewall.iptables_cmd
- self.__pre_start_cmd: List[str] = config.otgnet.commands.pre_start_cmd
- self.__post_start_cmd: List[str] = config.otgnet.commands.post_start_cmd
- self.__pre_stop_cmd: List[str] = config.otgnet.commands.pre_stop_cmd
- self.__post_stop_cmd: List[str] = config.otgnet.commands.post_stop_cmd
+ def build_cmd(key: str) -> List[str]:
+ return tools.build_cmd(
+ getattr(config.otgnet.commands, key),
+ getattr(config.otgnet.commands, f"{key}_remove"),
+ getattr(config.otgnet.commands, f"{key}_append"),
+ )
+
+ self.__pre_start_cmd: List[str] = build_cmd("pre_start_cmd")
+ self.__post_start_cmd: List[str] = build_cmd("post_start_cmd")
+ self.__pre_stop_cmd: List[str] = build_cmd("pre_stop_cmd")
+ self.__post_stop_cmd: List[str] = build_cmd("post_stop_cmd")
self.__gadget: str = config.otg.gadget
self.__driver: str = config.otg.devices.ethernet.driver