Skip to content

Commit e55f291

Browse files
committed
automatically adapt values for splunkenableunifiedpartition
1 parent 775ae33 commit e55f291

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/splunkconf-cloud-recovery.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,9 @@ exec >> /var/log/splunkconf-cloud-recovery-debug.log 2>&1
269269
# 20250505 up to 9.4.2
270270
# 20250606 add auto SSM clean timer service
271271
# 20250609 disable splunksecrets by default for all cases to avoid version conflict with python library
272+
# 20250609 automatically adapt values for splunkenableunifiedpartition
272273

273-
VERSION="20250509a"
274+
VERSION="20250509b"
274275

275276
# dont break script on error as we rely on tests for this
276277
set +e
@@ -1048,6 +1049,8 @@ fi
10481049
if [ -z ${splunkenableunifiedpartition+x} ]; then
10491050
echo "splunkenableunifiedpartition is unset, falling back to default value false"
10501051
splunkenableunifiedpartition="false"
1052+
elif [[ $splunkenableunifiedpartition -eq "1" || $splunkenableunifiedpartition -eq "yes" ]]; then
1053+
splunkenableunifiedpartition="true"
10511054
fi
10521055

10531056
# splunkhostmodeos

0 commit comments

Comments
 (0)