summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/migration-scripts/conntrack-sync/1-to-25
1 files changed, 5 insertions, 0 deletions
diff --git a/src/migration-scripts/conntrack-sync/1-to-2 b/src/migration-scripts/conntrack-sync/1-to-2
index 3a76fc0e0..ebbd8c35a 100755
--- a/src/migration-scripts/conntrack-sync/1-to-2
+++ b/src/migration-scripts/conntrack-sync/1-to-2
@@ -53,6 +53,11 @@ else:
for address in tmp:
config.set(base + ['ignore-address'], value=address, replace=False)
+ # we no longer support cluster mode
+ base_cluster = base + ['failover-mechanism', 'cluster']
+ if config.exists(base_cluster):
+ config.delete(base_cluster)
+
try:
with open(file_name, 'w') as f:
f.write(config.to_string())