Skip to content

Commit

Permalink
DRIVERS-2747 Fix OS detection (#369)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Nov 6, 2023
1 parent f95ccef commit 58013d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .evergreen/auth_aws/aws_tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def setup_ecs():
run_prune_command = f"{base_command} -v remote_gc_services --cluster {CONFIG[get_key('iam_auth_ecs_cluster')]}"

# Get the appropriate task definition based on the version of Ubuntu.
with open('/etc/release_lsb') as fid:
with open('/etc/lsb-release') as fid:
text = fid.read()
if 'jammy' in text:
task_definition = CONFIG[get_key('iam_auth_ecs_task_definition_jammy')]
Expand Down

0 comments on commit 58013d0

Please sign in to comment.