From 6bee73cacc78dd9c65cd0125e98483a52828e5ec Mon Sep 17 00:00:00 2001 From: Federico Stagni Date: Mon, 4 Nov 2024 17:13:05 +0100 Subject: [PATCH] test: removed CESNET from config --- tests/System/transformationSystem.sh | 2 +- tests/System/transformation_replication.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/System/transformationSystem.sh b/tests/System/transformationSystem.sh index c3419586404..50494236b23 100755 --- a/tests/System/transformationSystem.sh +++ b/tests/System/transformationSystem.sh @@ -45,7 +45,7 @@ directory=/dteam/diracCertification/Test/INIT/$version/$tdate/$stime #selecting a random USER Storage Element #SEs=$(dirac-dms-show-se-status |grep USER |grep -v 'Banned\|Degraded\|-2' | awk '{print $1}') #get all SEs ending with -SE that are Active -SEs=$(dirac-dms-show-se-status | grep -e "-SE \|-disk" | grep -v 'RAL\|CESNET-SE\|Banned\|Probing\|Error\|-new' | awk '{print $1}') +SEs=$(dirac-dms-show-se-status | grep -e "-SE \|-disk" | grep -v 'RAL\|Banned\|Probing\|Error\|-new' | awk '{print $1}') x=0 for n in $SEs diff --git a/tests/System/transformation_replication.sh b/tests/System/transformation_replication.sh index 44ed9b9ff0b..17edf3f7cfe 100755 --- a/tests/System/transformation_replication.sh +++ b/tests/System/transformation_replication.sh @@ -45,7 +45,7 @@ echo "Creating TransformationSystemTest" mkdir -p TransformationSystemTest directory=/dteam/diracCertification/Test/INIT/$version/$tdate/$stime/replication #get all SEs ending with -SE that are Active, randomize, turn into array -SEs=( $(dirac-dms-show-se-status | grep -e "-SE \|-disk " | grep -v 'RAL\|CESNET\|Banned\|Probing\|Error\|-new' | awk '{print $1}' | sort -R | xargs) ) +SEs=( $(dirac-dms-show-se-status | grep -e "-SE \|-disk " | grep -v 'RAL\|Banned\|Probing\|Error\|-new' | awk '{print $1}' | sort -R | xargs) ) SOURCE_SE=${SEs[0]} TARGET_SE=${SEs[1]}