Skip to content

Commit

Permalink
Merge pull request #7273 from gurevichmark/apt_key_test3
Browse files Browse the repository at this point in the history
Use correct string compare operator for testcase
  • Loading branch information
besawn committed Oct 27, 2022
2 parents 5211060 + fe41b70 commit 3d88b70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xCAT-test/autotest/testcase/go_xcat/case3
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3d88b70

Please sign in to comment.