From 1db46e4bdd67ba1731c877ff45567116436b16c3 Mon Sep 17 00:00:00 2001 From: Dave Chinner Date: Thu, 5 Mar 2026 12:10:51 +1100 Subject: [PATCH] fix: correct typo in service running test e2e CI tests were failing because they detected the customisation service was not running like so: /opt/hpc/azure/tests/test-sku-setup.sh Job output: Testing standard_nd40rs_v2 Failed: standard_nd40rs_v2: customisation service not running FAILED [ 14%] The service was running as it should, the test has a type in the service name it was checking, so it was checking for a service that didn't exist (and hence not running). Jira: https://issues.redhat.com/browse/RHELHPC-176 Signed-off-by: Dave Chinner --- templates/sku/test-sku-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/sku/test-sku-setup.sh b/templates/sku/test-sku-setup.sh index b376295..d582238 100644 --- a/templates/sku/test-sku-setup.sh +++ b/templates/sku/test-sku-setup.sh @@ -148,7 +148,7 @@ for sku in $SKU_LIST; do [ -s "$NCCL_CONF" ] && fail "$sku: $NCCL_CONF not empty" elif [ -z "$unknown_sku" ]; then # check that the customisation service is running - if ! systemctl is-active --quiet sku_customisations ; then + if ! systemctl is-active --quiet sku_customisation ; then fail "$sku: customisation service not running" fi fi