Skip to content

Commit

Permalink
Update the e2edev-test container's base os from ubuntu 18.04 to 22.04
Browse files Browse the repository at this point in the history
Signed-off-by: Max McAdam <max@fredcom.com>
  • Loading branch information
MaxMcAdam committed Jun 11, 2024
1 parent 71365b2 commit ac0a49e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:24.04

ARG ARCH

Expand Down
8 changes: 4 additions & 4 deletions test/gov/sync_service_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -323,10 +323,10 @@ else
fi

#Create custom key pairs
openssl genrsa -out /tmp/mms.private.key 2048
openssl rsa -in /tmp/mms.private.key -outform PEM -pubout -out /tmp/mms.public.key
openssl genrsa -out /tmp/env.private.key 2048
openssl rsa -in /tmp/env.private.key -outform PEM -pubout -out /tmp/env.public.key
openssl genrsa -traditional -out /tmp/mms.private.key 2048
openssl rsa -traditional -in /tmp/mms.private.key -outform PEM -pubout -out /tmp/mms.public.key
openssl genrsa -traditional -out /tmp/env.private.key 2048
openssl rsa -traditional -in /tmp/env.private.key -outform PEM -pubout -out /tmp/env.public.key
MADE_DEFAULT_KEYS=0
if [ ! -f ~/.hzn/keys/service.private.key ] || [ ! -f ~/.hzn/keys/service.public.pem ];
then
Expand Down

0 comments on commit ac0a49e

Please sign in to comment.