From f5ff5d0fde80b3d1d6dcdc9fdcfc0508676be940 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 7 Mar 2025 13:44:27 +0900 Subject: [PATCH] CentOS: Fix IP version in scenario002 We unintentionally switched the IP version used in this scenario from v6 to v4. Fix it to use the consistent version across the scenarios. Change-Id: I37fd407852a600e3e80cfecc3ac6ad5fb6d77d66 --- fixtures/scenario002.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fixtures/scenario002.pp b/fixtures/scenario002.pp index f38eefb9e..52286f08a 100644 --- a/fixtures/scenario002.pp +++ b/fixtures/scenario002.pp @@ -28,7 +28,7 @@ case $facts['os']['family'] { $tooz_backend = 'redis' } 'RedHat': { - $ipv6 = false + $ipv6 = true $cache_backend = 'redis_sentinel' $django_cache_backend = 'redis' $tooz_backend = 'redis_sentinel'