1
0
Fork 0
mirror of synced 2025-04-05 14:13:37 +03:00

Minor fixes to the template:

- Correct the wildcard search pattern for AmazonLinux2 AMI names.
- Correct the AmazonLinux2 installation link.
- Done testing of newly-added OS(s).
This commit is contained in:
Scottpedia 2021-01-01 22:51:15 -05:00
parent 4d87adc5d7
commit 81aff1b6b3

View file

@ -28,7 +28,7 @@
},
"AmazonLinux2": {
"HelperInstallationCommands": "export PATH=\"$PATH:/opt/aws/bin\"\n",
"InstallationLinks": "https://bit.ly/vpnsetup-amzn"
"InstallationLinks": "https://git.io/vpnsetup-amzn"
}
}
},
@ -665,7 +665,7 @@
" elif distribution == 'CentOS8':",
" AMIName = 'CentOS 8.3.2011 x86_64'",
" elif distribution == 'AmazonLinux2':",
" AMIName = 'amzn-ami-hvm-*'",
" AMIName = 'amzn2-ami-hvm-*'",
" response = ec2.describe_images(Filters=[{'Name':'name', 'Values':[AMIName]}], Owners=['099720109477', '379101102735', '125523088429', 'amazon'])",
" images = response['Images']",
" images.sort(key=creation_date,reverse=True)",