2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-18 20:30:56 +00:00

Use correct string compare operator for testcase

This commit is contained in:
Mark Gurevich
2022-10-27 12:00:39 -04:00
parent 2b25878533
commit fe41b7008b

View File

@ -66,7 +66,7 @@ cmd:if [[ "$$OS" =~ "ubuntu" ]]; then xdsh $$CN "apt-key list"; else xdsh $$CN "
check:output=~xCAT Automatic Signing Key
#Remove public key on non-Ubuntu system. It was installed during go-xcat RPM installs
cmd:if [[ "$$OS" !~ "ubuntu" ]]; then xdsh $$CN "rpm -e gpg-pubkey-ca548a47-5b2c830b"; fi
cmd:if [[ "$$OS" != "ubuntu" ]]; then xdsh $$CN "rpm -e gpg-pubkey-ca548a47-5b2c830b"; fi
cmd:xdsh $$CN "service xcatd stop"
end