Skip to content

Commit c33f721

Browse files
Merge pull request #425 from Esri/5.3.0
Release v5.3.0 for ArcGIS Enterprise 12.0
2 parents e38a45d + 4a659e1 commit c33f721

File tree

341 files changed

+11144
-375
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

341 files changed

+11144
-375
lines changed

cookbooks/arcgis-egdb/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default
33
title: "arcgis-egdb cookbook"
44
category: cookbooks
55
item: arcgis-egdb
6-
version: 2.2.0
6+
version: 2.3.0
77
latest: true
88
---
99

@@ -13,7 +13,7 @@ The arcgis-egdb cookbook creates enterprise geodatabases in SQL Server or Postgr
1313

1414
## Platforms
1515

16-
* Windows 10
16+
* Windows 11
1717
* Windows Server 2016
1818
* Windows Server 2019
1919
* Windows Server 2022
@@ -83,7 +83,7 @@ Attributes used by the recipe:
8383
```JSON
8484
{
8585
"arcgis": {
86-
"version": "11.4",
86+
"version": "12.0",
8787
"server": {
8888
"install_dir": "C:\\Program Files\\ArcGIS\\Server",
8989
"private_url": "https://domain.com:6443/arcgis",
@@ -96,7 +96,7 @@ Attributes used by the recipe:
9696
"egdb": {
9797
"engine": "postgres",
9898
"endpoint": "xxx.cluster-yyy.us-east-2.rds.amazonaws.com",
99-
"keycodes": "C:\\Program Files\\ESRI\\License11.4\\sysgen\\keycodes",
99+
"keycodes": "C:\\Program Files\\ESRI\\License12.0\\sysgen\\keycodes",
100100
"postgresbin" : "C:\\Program Files\\ArcGIS\\DataStore\\framework\\runtime\\pgsql\\bin",
101101
"master_username": "EsriRDSAdmin",
102102
"master_password": "changeit",
@@ -126,7 +126,7 @@ Attributes used by the recipe:
126126
```JSON
127127
{
128128
"arcgis": {
129-
"version": "11.4",
129+
"version": "12.0",
130130
"run_as_user": "arcgis",
131131
"server": {
132132
"install_dir": "C:\\Program Files\\ArcGIS\\Server"
@@ -137,7 +137,7 @@ Attributes used by the recipe:
137137
"egdb": {
138138
"engine": "postgres",
139139
"endpoint": "xxx.cluster-yyy.us-east-2.rds.amazonaws.com",
140-
"keycodes": "C:\\Program Files\\ESRI\\License11.4\\sysgen\\keycodes",
140+
"keycodes": "C:\\Program Files\\ESRI\\License12.0\\sysgen\\keycodes",
141141
"postgresbin" : "C:\\Program Files\\ArcGIS\\DataStore\\framework\\runtime\\pgsql\\bin",
142142
"master_username": "EsriRDSAdmin",
143143
"master_password": "changeit",
@@ -168,7 +168,7 @@ Attributes used by the recipe:
168168
```JSON
169169
{
170170
"arcgis": {
171-
"version": "11.4",
171+
"version": "12.0",
172172
"server": {
173173
"install_dir": "C:\\Program Files\\ArcGIS\\Server"
174174
},
@@ -177,7 +177,7 @@ Attributes used by the recipe:
177177
},
178178
"egdb": {
179179
"endpoint": "xxx.cluster-yyy.us-east-2.rds.amazonaws.com",
180-
"keycodes": "C:\\Program Files\\ESRI\\License11.4\\sysgen\\keycodes",
180+
"keycodes": "C:\\Program Files\\ESRI\\License12.0\\sysgen\\keycodes",
181181
"master_username": "EsriRDSAdmin",
182182
"master_password": "changeit",
183183
"db_password": "changeit",

cookbooks/arcgis-egdb/metadata.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
license 'Apache 2.0'
55
description 'Creates enterprise geodatabases in SQL Server or PostgreSQL DBMS and registers them with ArcGIS Server.'
66
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
7-
version '2.2.0'
7+
version '2.3.0'
88
chef_version '>= 15.3' if defined? chef_version
99

10-
depends 'arcgis-enterprise', '~> 5.2'
10+
depends 'arcgis-enterprise', '~> 5.3'
1111

1212
supports 'windows'
1313
supports 'ubuntu'

cookbooks/arcgis-enterprise/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ arcgis-enterprise cookbook CHANGELOG
33

44
This file is used to list changes made in each version of the arcgis-enterprise cookbook.
55

6+
5.3.0
7+
-----
8+
- Added support for ArcGIS Enterprise 12.0
9+
610
5.2.0
711
-----
812
- Added support for ArcGIS Enterprise 11.5

cookbooks/arcgis-enterprise/README.md

Lines changed: 203 additions & 71 deletions
Large diffs are not rendered by default.

cookbooks/arcgis-enterprise/attributes/datastore.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@
5151
data_store['patch_registry'] ='SOFTWARE\\ESRI\\ArcGIS Data Store\\Updates'
5252

5353
case node['arcgis']['version']
54+
when '12.0'
55+
data_store['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
56+
'ArcGIS_DataStore_Windows_120_197709.exe').gsub('/', '\\')
57+
data_store['product_code'] = '{E62C9D19-53FE-45C2-B9C5-C86C7C703B8F}'
5458
when '11.5'
5559
data_store['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
5660
'ArcGIS_DataStore_Windows_115_195370.exe').gsub('/', '\\')
@@ -89,6 +93,9 @@
8993
data_store['lp-setup'] = node['arcgis']['data_store']['setup']
9094

9195
case node['arcgis']['version']
96+
when '12.0'
97+
data_store['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
98+
'ArcGIS_DataStore_Linux_120_197823.tar.gz')
9299
when '11.5'
93100
data_store['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
94101
'ArcGIS_DataStore_Linux_115_195461.tar.gz')

cookbooks/arcgis-enterprise/attributes/default.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Cookbook Name:: arcgis-enterprise
33
# Attributes:: default
44
#
5-
# Copyright 2023-2024 Esri
5+
# Copyright 2023-2025 Esri
66
#
77
# Licensed under the Apache License, Version 2.0 (the "License");
88
# you may not use this file except in compliance with the License.
@@ -19,6 +19,7 @@
1919
include_attribute 'arcgis-repository'
2020

2121
default['arcgis']['run_as_user'] = 'arcgis'
22+
default['arcgis']['run_as_group'] = node['arcgis']['run_as_user']
2223
default['arcgis']['run_as_uid'] = 1100
2324
default['arcgis']['run_as_gid'] = 1100
2425

@@ -31,7 +32,7 @@
3132
default['arcgis']['run_as_msa'] = false
3233
default['arcgis']['run_as_user_auth_keys'] = nil
3334

34-
default['arcgis']['version'] = '11.5'
35+
default['arcgis']['version'] = '12.0'
3536

3637
default['arcgis']['cache_authorization_files'] = false
3738
default['arcgis']['configure_windows_firewall'] = false

cookbooks/arcgis-enterprise/attributes/portal.rb

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@
7373
portal['root_cert_alias'] = ''
7474
portal['import_certificate_chain'] = true
7575
portal['allssl'] = true
76+
portal['organization'] = {
77+
'allSSL' => node['arcgis']['portal']['allssl'],
78+
'access' => 'public'
79+
}
80+
portal['hsts_enabled'] = false
7681
portal['tomcat_java_opts'] = ''
7782
portal['configure_autostart'] = true
7883
portal['install_system_requirements'] = true
@@ -83,6 +88,7 @@
8388
portal['security']['user_store_config'] = {'type' => 'BUILTIN', 'properties' => {}}
8489
portal['security']['role_store_config'] = {'type' => 'BUILTIN', 'properties' => {}}
8590
portal['security']['config'] = nil
91+
portal['security']['policy'] = {}
8692

8793
portal['log_level'] = 'WARNING'
8894
portal['max_log_file_age'] = 90
@@ -103,6 +109,7 @@
103109
portal['webgisdr_properties'] = {}
104110
portal['webgisdr_timeout'] = 36000 # 10 hours
105111

112+
portal['settings'] = {}
106113
portal['email_settings'] = nil
107114
portal['user_default_settings'] = nil
108115

@@ -119,6 +126,11 @@
119126
portal['patch_registry'] ='SOFTWARE\\ESRI\\Portal for ArcGIS\\Updates'
120127

121128
case node['arcgis']['version']
129+
when '12.0'
130+
portal['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
131+
'Portal_for_ArcGIS_Windows_120_197706.exe').gsub('/', '\\')
132+
portal['product_code'] = '{C898DDF9-D6BE-45DF-9A10-3263660BB39F}'
133+
portal['unpack_options'] = '/x'
122134
when '11.5'
123135
portal['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
124136
'Portal_for_ArcGIS_Windows_115_195367.exe').gsub('/', '\\')
@@ -193,6 +205,9 @@
193205
portal['lp-setup'] = node['arcgis']['server']['setup']
194206

195207
case node['arcgis']['version']
208+
when '12.0'
209+
portal['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
210+
'Portal_for_ArcGIS_Linux_120_197821.tar.gz')
196211
when '11.5'
197212
portal['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
198213
'Portal_for_ArcGIS_Linux_115_195451.tar.gz')

cookbooks/arcgis-enterprise/attributes/server.rb

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@
115115
server['disable_nodeagent_plugins'] = true
116116

117117
server['services_dir_enabled'] = true
118+
server['callback_functions_enabled'] = true
118119

119120
server['patches'] = []
120121

@@ -146,6 +147,15 @@
146147
'ServerConfigurationUtility.exe').gsub('/', '\\')
147148

148149
case node['arcgis']['version']
150+
when '12.0'
151+
server['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
152+
'ArcGIS_Server_Windows_120_197664.exe').gsub('/', '\\')
153+
server['product_code'] = '{97DB2F11-2C92-41DF-9C6D-F71648CD2AC9}'
154+
default['arcgis']['python']['runtime_environment'] = File.join(
155+
server_install_dir,
156+
'framework\\runtime\\ArcGIS\\bin\\Python\\envs\\arcgispro-py3').gsub('/', '\\')
157+
server['patch_registry'] ='SOFTWARE\\ESRI\\Server12.0\\Updates'
158+
server['unpack_options'] = '/x'
149159
when '11.5'
150160
server['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
151161
'ArcGIS_Server_Windows_115_195344.exe').gsub('/', '\\')
@@ -264,6 +274,9 @@
264274
server['lp-setup'] = node['arcgis']['server']['setup']
265275

266276
case node['arcgis']['version']
277+
when '12.0'
278+
server['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
279+
'ArcGIS_Server_Linux_120_197810.tar.gz')
267280
when '11.5'
268281
server['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
269282
'ArcGIS_Server_Linux_115_195440.tar.gz')

cookbooks/arcgis-enterprise/attributes/webadaptor.rb

Lines changed: 80 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,54 @@
3737
'Tools\\ConfigureWebAdaptor.exe').gsub('/', '\\')
3838

3939
case node['arcgis']['version']
40+
when '12.0'
41+
web_adaptor['setup'] = ::File.join(node['arcgis']['repository']['setups'],
42+
"ArcGIS #{node['arcgis']['version']}",
43+
'WebAdaptorIIS', 'Setup.exe').gsub('/', '\\')
44+
web_adaptor['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
45+
'ArcGIS_Web_Adaptor_for_Microsoft_IIS_120_197711.exe').gsub('/', '\\')
46+
web_adaptor['product_codes'] = [
47+
'{BB194DE8-F519-4660-837F-B6AAA3650DEB}', '{2F6059F3-08E0-45D6-B75E-D99A26F46923}',
48+
'{7C748A51-F096-4886-B7DB-A8F1D09AF36B}', '{A6571CB2-ED32-4406-99DE-1115CC67A159}',
49+
'{532FC0CE-63C1-4AC0-823E-C11DEBCB014D}', '{135DE6D2-F950-4502-8A3F-207590E63385}',
50+
'{A7B6D59B-E59C-4799-9793-1E062FE57C4C}', '{4C04F842-BF8B-4789-8FDC-092767AC09A7}',
51+
'{49530C4D-F9E1-4AB1-9386-0ADA92BBE99B}', '{1FF4D167-C240-48BC-961A-F819EB364283}',
52+
'{AE371E47-D666-41D7-ABD2-06304FAC2CE1}', '{CC85E3D7-FBEB-417A-B94B-83721721144D}',
53+
'{319AFA39-5272-4944-A4DA-FACFB484737B}', '{1B923CCF-53C3-49BF-99D0-B8A0D4AFF648}',
54+
'{B023628D-AC80-425B-A052-BCD26AD5A547}', '{3650EF99-D4A5-4A8F-AA28-09935A66EBFA}',
55+
'{0033A180-F240-422A-B1A7-9F4FEDD8B20E}', '{FF312ADC-BDEB-4AF7-9B27-CE849400D4CB}',
56+
'{FF480938-7A92-438E-B634-E46B747FA4AA}', '{D965B597-02B4-4BAD-B7B5-2C8780BEDCAC}',
57+
'{C259A6BB-BF51-4793-A77B-359B5A9D274E}', '{B0868301-627D-4A6B-A301-5C9FC120418E}',
58+
'{578A334A-F1D4-4846-B6FE-9B6087FC4DC1}', '{8E07BB12-EC11-4477-AC15-EB93A39AA736}',
59+
'{25689A35-9378-4A80-B5C9-CB5723732D0F}', '{6F484488-A8EA-4483-9700-EA173C86DE5F}',
60+
'{F89A57CE-6340-4549-8893-85B86A3315C9}', '{01BB8344-7A5D-4204-B046-B8FC5B1EB1AF}',
61+
'{C829C6CE-2239-4B9F-97ED-8B93CE13006E}', '{B294CD04-C562-4C42-A3D0-A3F353F58352}',
62+
'{B0D9C28E-26A2-4362-9FE3-1504BF92C204}', '{C3FE2DBA-83B6-40B4-954E-4733FF7F4C0C}',
63+
'{07F81319-C8A9-4A73-87FE-6C3FFEEE187A}', '{4CC28D62-8260-4537-9E6D-578432579EA6}',
64+
'{11517C11-A569-42DF-A109-35ED8A383215}', '{8501FB6A-2543-4857-8C68-F59EB83A5F14}',
65+
'{09542E0F-0313-4249-9970-7CEB90902D2A}', '{095279E6-82B0-4915-93C1-B0B3F7491BB5}',
66+
'{B698BDD0-DC3E-41B0-B1D5-566B522EDD4F}', '{DCE0A9CB-20E5-46F7-8A89-DA9DAC1658EF}',
67+
'{1AF687D6-A15F-4AC1-A5B8-202BEF43AA92}', '{D38DC6CD-7D57-477E-B5B4-CB3A704654C8}',
68+
'{0CCFF04D-8F0A-45FC-B326-A6A3D2E828B0}', '{BF863CEF-1BE9-40F6-976B-680D502F9C0F}',
69+
'{9BC57233-80DA-4EAD-96D1-ED07FDCD602B}', '{C68E9488-FD2B-426D-B431-48EACEF2D8CE}',
70+
'{58EB33C9-5156-406D-81EE-B9B20603FEAA}', '{4D4A68E7-56E0-43E0-94DF-B18CBAB9E205}',
71+
'{4350A88A-9027-40C1-91CA-0D9235BE4042}', '{1F78C428-AC73-4858-A4D2-FCEB3123F156}',
72+
'{B2E5F1AB-51EB-492D-BF61-A43002F7F8D2}'
73+
]
74+
75+
web_adaptor['config_web_adaptor_exe'] = ::File.join(ENV['CommonProgramFiles'],
76+
'ArcGIS\\WebAdaptor\\IIS',
77+
node['arcgis']['version'],
78+
'Tools\\ConfigureWebAdaptor.exe').gsub('/', '\\')
79+
80+
web_adaptor['patch_registry'] ='SOFTWARE\\ESRI\\ArcGIS Web Adaptor (IIS) 12.0\\Updates'
81+
82+
# ASP.NET Core Runtime 8 Hosting Bundle and Web Deploy 4.0 are required by ArcGIS Web Adaptor IIS 6.
83+
web_adaptor['dotnet_setup_url'] = 'https://download.visualstudio.microsoft.com/download/pr/4956ec5e-8502-4454-8f28-40239428820f/e7181890eed8dfa11cefbf817c4e86b0/dotnet-hosting-8.0.11-win.exe'
84+
web_adaptor['dotnet_setup_path'] = ::File.join(node['arcgis']['repository']['setups'], 'dotnet-hosting-8.0.11-win.exe').gsub('/', '\\')
85+
86+
web_adaptor['web_deploy_setup_url'] = 'https://download.microsoft.com/download/webdeploy_amd64_en-US.msi'
87+
web_adaptor['web_deploy_setup_path'] = ::File.join(node['arcgis']['repository']['setups'], 'WebDeploy_amd64_en-US.msi').gsub('/', '\\')
4088
when '11.5'
4189
web_adaptor['setup'] = ::File.join(node['arcgis']['repository']['setups'],
4290
"ArcGIS #{node['arcgis']['version']}",
@@ -83,7 +131,7 @@
83131
web_adaptor['dotnet_setup_url'] = 'https://download.visualstudio.microsoft.com/download/pr/4956ec5e-8502-4454-8f28-40239428820f/e7181890eed8dfa11cefbf817c4e86b0/dotnet-hosting-8.0.11-win.exe'
84132
web_adaptor['dotnet_setup_path'] = ::File.join(node['arcgis']['repository']['setups'], 'dotnet-hosting-8.0.11-win.exe').gsub('/', '\\')
85133

86-
web_adaptor['web_deploy_setup_url'] = 'https://download.microsoft.com/download/b/d/8/bd882ec4-12e0-481a-9b32-0fae8e3c0b78/webdeploy_amd64_en-US.msi'
134+
web_adaptor['web_deploy_setup_url'] = 'https://download.microsoft.com/download/webdeploy_amd64_en-US.msi'
87135
web_adaptor['web_deploy_setup_path'] = ::File.join(node['arcgis']['repository']['setups'], 'WebDeploy_amd64_en-US.msi').gsub('/', '\\')
88136
when '11.4'
89137
web_adaptor['setup'] = ::File.join(node['arcgis']['repository']['setups'],
@@ -131,7 +179,7 @@
131179
web_adaptor['dotnet_setup_url'] = 'https://download.visualstudio.microsoft.com/download/pr/751d3fcd-72db-4da2-b8d0-709c19442225/33cc492bde704bfd6d70a2b9109005a0/dotnet-hosting-8.0.6-win.exe'
132180
web_adaptor['dotnet_setup_path'] = ::File.join(node['arcgis']['repository']['setups'], 'dotnet-hosting-8.0.6-win.exe').gsub('/', '\\')
133181

134-
web_adaptor['web_deploy_setup_url'] = 'https://download.microsoft.com/download/b/d/8/bd882ec4-12e0-481a-9b32-0fae8e3c0b78/webdeploy_amd64_en-US.msi'
182+
web_adaptor['web_deploy_setup_url'] = 'https://download.microsoft.com/download/webdeploy_amd64_en-US.msi'
135183
web_adaptor['web_deploy_setup_path'] = ::File.join(node['arcgis']['repository']['setups'], 'WebDeploy_amd64_en-US.msi').gsub('/', '\\')
136184
when '11.3'
137185
web_adaptor['setup'] = ::File.join(node['arcgis']['repository']['setups'],
@@ -290,6 +338,32 @@
290338
# Product codes used to uninstall ArcGIS Web Adaptor during upgrades.
291339
# The list includes the first two-four product codes form each supported ArcGIS version.
292340
web_adaptor['all_product_codes'] = [
341+
'{BB194DE8-F519-4660-837F-B6AAA3650DEB}', '{2F6059F3-08E0-45D6-B75E-D99A26F46923}', # 12.0
342+
'{7C748A51-F096-4886-B7DB-A8F1D09AF36B}', '{A6571CB2-ED32-4406-99DE-1115CC67A159}',
343+
'{532FC0CE-63C1-4AC0-823E-C11DEBCB014D}', '{135DE6D2-F950-4502-8A3F-207590E63385}',
344+
'{A7B6D59B-E59C-4799-9793-1E062FE57C4C}', '{4C04F842-BF8B-4789-8FDC-092767AC09A7}',
345+
'{49530C4D-F9E1-4AB1-9386-0ADA92BBE99B}', '{1FF4D167-C240-48BC-961A-F819EB364283}',
346+
'{AE371E47-D666-41D7-ABD2-06304FAC2CE1}', '{CC85E3D7-FBEB-417A-B94B-83721721144D}',
347+
'{319AFA39-5272-4944-A4DA-FACFB484737B}', '{1B923CCF-53C3-49BF-99D0-B8A0D4AFF648}',
348+
'{B023628D-AC80-425B-A052-BCD26AD5A547}', '{3650EF99-D4A5-4A8F-AA28-09935A66EBFA}',
349+
'{0033A180-F240-422A-B1A7-9F4FEDD8B20E}', '{FF312ADC-BDEB-4AF7-9B27-CE849400D4CB}',
350+
'{FF480938-7A92-438E-B634-E46B747FA4AA}', '{D965B597-02B4-4BAD-B7B5-2C8780BEDCAC}',
351+
'{C259A6BB-BF51-4793-A77B-359B5A9D274E}', '{B0868301-627D-4A6B-A301-5C9FC120418E}',
352+
'{578A334A-F1D4-4846-B6FE-9B6087FC4DC1}', '{8E07BB12-EC11-4477-AC15-EB93A39AA736}',
353+
'{25689A35-9378-4A80-B5C9-CB5723732D0F}', '{6F484488-A8EA-4483-9700-EA173C86DE5F}',
354+
'{F89A57CE-6340-4549-8893-85B86A3315C9}', '{01BB8344-7A5D-4204-B046-B8FC5B1EB1AF}',
355+
'{C829C6CE-2239-4B9F-97ED-8B93CE13006E}', '{B294CD04-C562-4C42-A3D0-A3F353F58352}',
356+
'{B0D9C28E-26A2-4362-9FE3-1504BF92C204}', '{C3FE2DBA-83B6-40B4-954E-4733FF7F4C0C}',
357+
'{07F81319-C8A9-4A73-87FE-6C3FFEEE187A}', '{4CC28D62-8260-4537-9E6D-578432579EA6}',
358+
'{11517C11-A569-42DF-A109-35ED8A383215}', '{8501FB6A-2543-4857-8C68-F59EB83A5F14}',
359+
'{09542E0F-0313-4249-9970-7CEB90902D2A}', '{095279E6-82B0-4915-93C1-B0B3F7491BB5}',
360+
'{B698BDD0-DC3E-41B0-B1D5-566B522EDD4F}', '{DCE0A9CB-20E5-46F7-8A89-DA9DAC1658EF}',
361+
'{1AF687D6-A15F-4AC1-A5B8-202BEF43AA92}', '{D38DC6CD-7D57-477E-B5B4-CB3A704654C8}',
362+
'{0CCFF04D-8F0A-45FC-B326-A6A3D2E828B0}', '{BF863CEF-1BE9-40F6-976B-680D502F9C0F}',
363+
'{9BC57233-80DA-4EAD-96D1-ED07FDCD602B}', '{C68E9488-FD2B-426D-B431-48EACEF2D8CE}',
364+
'{58EB33C9-5156-406D-81EE-B9B20603FEAA}', '{4D4A68E7-56E0-43E0-94DF-B18CBAB9E205}',
365+
'{4350A88A-9027-40C1-91CA-0D9235BE4042}', '{1F78C428-AC73-4858-A4D2-FCEB3123F156}',
366+
'{B2E5F1AB-51EB-492D-BF61-A43002F7F8D2}',
293367
'{B87FD5D1-7ED0-424B-8A79-CE4B231CF085}', '{A944DC16-D9B0-4FEC-AAFB-9CC9D5D45414}', # 11.5
294368
'{CACEC5F2-E484-40E5-BC3E-D82A19554E40}', '{EC659D96-A962-4F04-AF02-42CDD3CC8C6A}',
295369
'{7D357A92-E949-4322-95D5-6EB58640C078}', '{4782E831-37C1-4B83-B975-9D0E0F373135}',
@@ -418,8 +492,12 @@
418492
node['arcgis']['version'],
419493
'WebAdaptor', 'Setup')
420494
web_adaptor['lp-setup'] = node['arcgis']['web_adaptor']['setup']
495+
web_adaptor['war_file'] = 'arcgis.war'
421496

422497
case node['arcgis']['version']
498+
when '12.0'
499+
web_adaptor['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
500+
'ArcGIS_Web_Adaptor_Java_Linux_120_197824.tar.gz')
423501
when '11.5'
424502
web_adaptor['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
425503
'ArcGIS_Web_Adaptor_Java_Linux_115_195462.tar.gz')
@@ -473,6 +551,4 @@
473551

474552
# Starting from ArcGIS 10.8.1 Web Adaptor registration supports 'ReindexPortalContent' option.
475553
web_adaptor['reindex_portal_content'] = true
476-
477-
web_adaptor['war_file'] = 'arcgis.war'
478554
end

cookbooks/arcgis-enterprise/attributes/webstyles.rb

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Cookbook Name:: arcgis-enterprise
33
# Attributes:: webstyles
44
#
5-
# Copyright 2023-2024 Esri
5+
# Copyright 2023-2025 Esri
66
#
77
# Licensed under the Apache License, Version 2.0 (the "License");
88
# you may not use this file except in compliance with the License.
@@ -24,6 +24,10 @@
2424
'ArcGISWebStyles', 'Setup.exe').tr('/', '\\')
2525

2626
case node['arcgis']['version']
27+
when '12.0'
28+
webstyles['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
29+
'Portal_for_ArcGIS_Web_Styles_Windows_120_197708.exe').tr('/', '\\')
30+
webstyles['product_code'] = '{A31A5861-3957-46E3-9166-56D297C0309E}'
2731
when '11.5'
2832
webstyles['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
2933
'Portal_for_ArcGIS_Web_Styles_Windows_115_195369.exe').tr('/', '\\')
@@ -61,6 +65,9 @@
6165
'WebStyles', 'WebStyles-Setup.sh')
6266

6367
case node['arcgis']['version']
68+
when '12.0'
69+
webstyles['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
70+
'Portal_for_ArcGIS_Web_Styles_Linux_120_197822.tar.gz')
6471
when '11.5'
6572
webstyles['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
6673
'Portal_for_ArcGIS_Web_Styles_Linux_115_195200.tar.gz')

0 commit comments

Comments
 (0)