summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNataliia Solomko <natalirs1985@gmail.com>2024-07-23 12:46:41 +0300
committerChristian Breunig <christian@breunig.cc>2024-07-25 13:21:18 +0200
commit27641f07b28df3e32333aa2e6d07222411b8c8bc (patch)
treea6c287a08e3bd1ad437ac4b66b271eb84c6de155
parent6fb937821dd4d70f70dff65cfd81684f175c426a (diff)
downloadvyos-1x-27641f07b28df3e32333aa2e6d07222411b8c8bc.tar.gz
vyos-1x-27641f07b28df3e32333aa2e6d07222411b8c8bc.zip
system_option: T5552: Apply IPv4 and IPv6 options after reapplying sysctls by TuneDmergify/bp/sagitta/pr-3853
(cherry picked from commit 7b82e4005724683c6311fab22358746f2cca4c1b)
-rw-r--r--data/config-mode-dependencies/vyos-1x.json4
-rwxr-xr-xsrc/conf_mode/system_option.py9
2 files changed, 13 insertions, 0 deletions
diff --git a/data/config-mode-dependencies/vyos-1x.json b/data/config-mode-dependencies/vyos-1x.json
index 3f381169b..ca4ceb58f 100644
--- a/data/config-mode-dependencies/vyos-1x.json
+++ b/data/config-mode-dependencies/vyos-1x.json
@@ -59,5 +59,9 @@
"wireguard": ["interfaces_wireguard"],
"wireless": ["interfaces_wireless"],
"wwan": ["interfaces_wwan"]
+ },
+ "system_option": {
+ "ip": ["system_ip"],
+ "ipv6": ["system_ipv6"]
}
}
diff --git a/src/conf_mode/system_option.py b/src/conf_mode/system_option.py
index 571ce55ec..180686924 100755
--- a/src/conf_mode/system_option.py
+++ b/src/conf_mode/system_option.py
@@ -31,6 +31,7 @@ from vyos.utils.process import cmd
from vyos.utils.process import is_systemd_service_running
from vyos.utils.network import is_addr_assigned
from vyos.utils.network import is_intf_addr_assigned
+from vyos.configdep import set_dependents, call_dependents
from vyos import ConfigError
from vyos import airbag
airbag.enable()
@@ -55,6 +56,12 @@ def get_config(config=None):
get_first_key=True,
with_recursive_defaults=True)
+ if 'performance' in options:
+ # Update IPv4 and IPv6 options after TuneD reapplies
+ # sysctl from config files
+ for protocol in ['ip', 'ipv6']:
+ set_dependents(protocol, conf)
+
return options
def verify(options):
@@ -145,6 +152,8 @@ def apply(options):
else:
cmd('systemctl stop tuned.service')
+ call_dependents()
+
# Keyboard layout - there will be always the default key inside the dict
# but we check for key existence anyway
if 'keyboard_layout' in options: