Added Oracle to distribution list (#8114)
Craig Loewen committed
Mar 16, 2022 at 10:24 UTC
f3abb7dca639ff7553c53f3608d71eb150a151a7
2 files changed
+23
-1
distributions/DistributionInfo.json
+20
@@ -79,6 +79,26 @@
79
"Amd64PackageUrl": "https://wsldownload.azureedge.net/Ubuntu_2004.2020.424.0_x64.appx",
80
"Arm64PackageUrl": "https://wsldownload.azureedge.net/Ubuntu_2004.2020.424.0_ARM64.appx",
81
"PackageFamilyName": "CanonicalGroupLimited.Ubuntu20.04onWindows_79rhkp1fndgs"
82
+ },
83
+ {
84
+ "Name": "OracleLinux_8_5",
85
+ "FriendlyName": "Oracle Linux 8.5",
86
+ "StoreAppId": "9P06H18WXBVP",
87
+ "Amd64": true,
88
+ "Arm64": false,
89
+ "Amd64PackageUrl": "https://wslstorestorage.blob.core.windows.net/wslblob/OracleLinux8.5_8.5.1.0.Appx",
90
+ "Arm64PackageUrl": null,
91
+ "PackageFamilyName": "3810OracleAmericaInc.OracleLinux8.5_dm28ctvqnhe9g"
92
+ },
93
+ {
94
+ "Name": "OracleLinux_7_9",
95
+ "FriendlyName": "Oracle Linux 7.9",
96
+ "StoreAppId": "9P7L0QWBSLTK",
97
+ "Amd64": true,
98
+ "Arm64": false,
99
+ "Amd64PackageUrl": "https://wslstorestorage.blob.core.windows.net/wslblob/OracleLinux7.9_7.9.1.0.Appx",
100
+ "Arm64PackageUrl": null,
101
+ "PackageFamilyName": "3810OracleAmericaInc.OracleLinux7.9_dm28ctvqnhe9g"
102
}
103
]
104
}
\ No newline at end of file
distributions/validate.py
+3
-1
@@ -57,4 +57,6 @@ if __name__ == "__main__":
57
assert is_unique([e.get('Name') for e in distros if e])
58
59
for e in content['Distributions']:
60
- validate_distro(e)
\ No newline at end of file
60
+ validate_distro(e)
61
+
62
+ print("All checks completed successfully")
\ No newline at end of file