File tree 4 files changed +8
-7
lines changed
4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ def has_logrotate():
209
209
#
210
210
# When doing a release, be sure to use the actual agent version. Current agent version: 2.4.0.0
211
211
#
212
- AGENT_VERSION = '2.12.0.2 '
212
+ AGENT_VERSION = '2.12.0.4 '
213
213
AGENT_LONG_VERSION = "{0}-{1}" .format (AGENT_NAME , AGENT_VERSION )
214
214
AGENT_DESCRIPTION = """
215
215
The Azure Linux Agent supports the provisioning and running of Linux
Original file line number Diff line number Diff line change @@ -320,10 +320,11 @@ def run(self):
320
320
# will be removed from Python 3.
321
321
# * In version 3.13 of Python, the crypt module was removed and legacycrypt is
322
322
# required instead.
323
- requires = [
324
- "distro;python_version>='3.8'" ,
325
- "legacycrypt;python_version>='3.13'" ,
326
- ]
323
+ requires = []
324
+ if sys .version_info [0 ] >= 3 and sys .version_info [1 ] >= 8 :
325
+ requires .append ('distro' )
326
+ if sys .version_info [0 ] >= 3 and sys .version_info [1 ] >= 13 :
327
+ requires .append ('legacycrypt' )
327
328
328
329
modules = [] # pylint: disable=invalid-name
329
330
Original file line number Diff line number Diff line change @@ -938,7 +938,7 @@ def read_file(path: str) -> str:
938
938
template : Dict [str , Any ] = json .loads (read_file (str (self ._test_source_directory / "orchestrator" / "templates/vmss.json" )))
939
939
940
940
# Scale sets for some images need to be deployed with 'plan' property
941
- plan_required_images = ["almalinux" , "kinvolk" , "erockyenterprisesoftwarefoundationinc1653071250513 " ]
941
+ plan_required_images = ["almalinux" , "kinvolk" , "resf " ]
942
942
if publisher in plan_required_images :
943
943
resources : List [Dict [str , Any ]] = template .get ('resources' )
944
944
for resource in resources :
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ images:
191
191
AzureChinaCloud : []
192
192
AzureUSGovernment : []
193
193
rocky_9 :
194
- urn : " erockyenterprisesoftwarefoundationinc1653071250513 rockylinux-9 rockylinux-9 latest"
194
+ urn : " resf rockylinux-x86_64 9-base latest"
195
195
locations :
196
196
AzureChinaCloud : []
197
197
AzureUSGovernment : []
You can’t perform that action at this time.
0 commit comments