summaryrefslogtreecommitdiff
path: root/src/conf_mode/service_conntrack-sync.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2026-06-16 20:24:44 +0200
committerChristian Breunig <christian@breunig.cc>2026-06-16 20:24:44 +0200
commitfa853ed8f25b5b9bf396d6e819b2c6259e7f5f42 (patch)
tree9ee5a9c573512f393384d5adc9211457915a3bac /src/conf_mode/service_conntrack-sync.py
parent4fb32bc179127691f40c8e93c55877aa76f10416 (diff)
downloadvyos-1x-fa853ed8f25b5b9bf396d6e819b2c6259e7f5f42.tar.gz
vyos-1x-fa853ed8f25b5b9bf396d6e819b2c6259e7f5f42.zip
T8923: normalize "can not" to "cannot"
Replace two-word "can not" / "Can not" with "cannot" across comments, ConfigError messages, CLI help text, and op-mode output. Standard SNMP MIB files under mibs/ are left unchanged.
Diffstat (limited to 'src/conf_mode/service_conntrack-sync.py')
-rwxr-xr-xsrc/conf_mode/service_conntrack-sync.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/service_conntrack-sync.py b/src/conf_mode/service_conntrack-sync.py
index 5eb4ca0e5..b069378c3 100755
--- a/src/conf_mode/service_conntrack-sync.py
+++ b/src/conf_mode/service_conntrack-sync.py
@@ -80,11 +80,11 @@ def verify(conntrack):
if has_peer:
for interface, interface_config in conntrack['interface'].items():
if 'peer' not in interface_config:
- raise ConfigError('Can not mix unicast and multicast mode!')
+ raise ConfigError('Cannot mix unicast and multicast mode!')
if 'expect_sync' in conntrack:
if len(conntrack['expect_sync']) > 1 and 'all' in conntrack['expect_sync']:
- raise ConfigError('Can not configure expect-sync "all" with other protocols!')
+ raise ConfigError('Cannot configure expect-sync "all" with other protocols!')
if 'listen_address' in conntrack:
for address in conntrack['listen_address']: