summaryrefslogtreecommitdiff
path: root/src/conf_mode/system_ip.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-08-05 17:09:07 +0200
committerChristian Breunig <christian@breunig.cc>2024-08-23 08:06:24 +0200
commitb393899709d00d42e6af391a6d3e3a2a29f67646 (patch)
treef0413a5b4b3a622778ce4d74cae131d466077af9 /src/conf_mode/system_ip.py
parent6cfa688699a2460becc27175c14263985ebfdfd0 (diff)
downloadvyos-1x-b393899709d00d42e6af391a6d3e3a2a29f67646.tar.gz
vyos-1x-b393899709d00d42e6af391a6d3e3a2a29f67646.zip
sysctl: T3204: restore sysctl setttings overwritten by tuned
(cherry picked from commit 8500e8658ff10f52739143fd7814cf60c9195f16)
Diffstat (limited to 'src/conf_mode/system_ip.py')
-rwxr-xr-xsrc/conf_mode/system_ip.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/conf_mode/system_ip.py b/src/conf_mode/system_ip.py
index 2a0bda91a..c8a91fd2f 100755
--- a/src/conf_mode/system_ip.py
+++ b/src/conf_mode/system_ip.py
@@ -24,7 +24,8 @@ from vyos.utils.dict import dict_search
from vyos.utils.file import write_file
from vyos.utils.process import is_systemd_service_active
from vyos.utils.system import sysctl_write
-
+from vyos.configdep import set_dependents
+from vyos.configdep import call_dependents
from vyos import ConfigError
from vyos import frr
from vyos import airbag
@@ -52,6 +53,11 @@ def get_config(config=None):
get_first_key=True)}}
# Merge policy dict into "regular" config dict
opt = dict_merge(tmp, opt)
+
+ # If IPv4 ARP table size is set here and also manually in sysctl, the more
+ # fine grained value from sysctl must win
+ set_dependents('sysctl', conf)
+
return opt
def verify(opt):
@@ -127,6 +133,8 @@ def apply(opt):
frr_cfg.add_before(frr.default_add_before, opt['frr_zebra_config'])
frr_cfg.commit_configuration(zebra_daemon)
+ call_dependents()
+
if __name__ == '__main__':
try:
c = get_config()