Skip to content

Commit e38a45d

Browse files
Merge pull request #411 from Esri/5.2.0
Cookbook Release v5.2.0 for ArcGIS Enterprise 11.5
2 parents 6b80724 + 739e51d commit e38a45d

File tree

400 files changed

+11534
-516
lines changed

Some content is hidden

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

400 files changed

+11534
-516
lines changed

cookbooks/arcgis-egdb/README.md

Lines changed: 2 additions & 1 deletion
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.1.0
6+
version: 2.2.0
77
latest: true
88
---
99

@@ -17,6 +17,7 @@ The arcgis-egdb cookbook creates enterprise geodatabases in SQL Server or Postgr
1717
* Windows Server 2016
1818
* Windows Server 2019
1919
* Windows Server 2022
20+
* Windows Server 2025
2021
* Ubuntu Server 20.04 LTS
2122
* Ubuntu Server 22.04 LTS
2223
* Ubuntu Server 24.04 LTS

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.1.0'
7+
version '2.2.0'
88
chef_version '>= 15.3' if defined? chef_version
99

10-
depends 'arcgis-enterprise', '~> 5.1'
10+
depends 'arcgis-enterprise', '~> 5.2'
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.2.0
7+
-----
8+
- Added support for ArcGIS Enterprise 11.5
9+
610
5.1.0
711
-----
812
- Added support for ArcGIS Enterprise 11.4

cookbooks/arcgis-enterprise/README.md

Lines changed: 143 additions & 84 deletions
Large diffs are not rendered by default.

cookbooks/arcgis-enterprise/attributes/datastore.rb

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Cookbook Name:: arcgis-enterprise
33
# Attributes:: datastore
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.
@@ -26,15 +26,15 @@
2626

2727
data_store['hostidentifier'] = ''
2828

29-
data_store['types'] = 'tileCache,relational'
29+
data_store['types'] = 'object,relational'
3030
data_store['mode'] = ''
3131
data_store['roles'] = ''
3232
data_store['configure_autostart'] = true
3333
data_store['install_system_requirements'] = true
3434
data_store['force_remove_machine'] = false
3535
data_store['setup_archive'] = ''
3636
data_store['product_code'] = ''
37-
data_store['ports'] = '2443,4369,9220,9320,9820,9829,9830,9831,9840,9876,9900,25672,44369,45671,45672,29079-29090'
37+
data_store['ports'] = '2443,4369,9220,9320,9820,9828,9829,9830,9831,9840,9850,9876,9900,25672,44369,45671,45672,29079-29090'
3838

3939
data_store['patches'] = []
4040

@@ -51,6 +51,10 @@
5151
data_store['patch_registry'] ='SOFTWARE\\ESRI\\ArcGIS Data Store\\Updates'
5252

5353
case node['arcgis']['version']
54+
when '11.5'
55+
data_store['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
56+
'ArcGIS_DataStore_Windows_115_195370.exe').gsub('/', '\\')
57+
data_store['product_code'] = '{622B3833-6239-4857-96D5-4294D1E85F94}'
5458
when '11.4'
5559
data_store['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
5660
'ArcGIS_DataStore_Windows_114_192943.exe').gsub('/', '\\')
@@ -85,6 +89,9 @@
8589
data_store['lp-setup'] = node['arcgis']['data_store']['setup']
8690

8791
case node['arcgis']['version']
92+
when '11.5'
93+
data_store['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
94+
'ArcGIS_DataStore_Linux_115_195461.tar.gz')
8895
when '11.4'
8996
data_store['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
9097
'ArcGIS_DataStore_Linux_114_192981.tar.gz')
@@ -164,4 +171,9 @@
164171
end
165172

166173
data_store['setup_options'] = ''
174+
175+
data_store['relational']['disk_threshold_readonly'] = 5120
176+
data_store['relational']['max_connections'] = 150
177+
data_store['relational']['pitr'] = 'disable'
178+
data_store['relational']['enablessl'] = true
167179
end

cookbooks/arcgis-enterprise/attributes/default.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
default['arcgis']['run_as_msa'] = false
3232
default['arcgis']['run_as_user_auth_keys'] = nil
3333

34-
default['arcgis']['version'] = '11.4'
34+
default['arcgis']['version'] = '11.5'
3535

3636
default['arcgis']['cache_authorization_files'] = false
3737
default['arcgis']['configure_windows_firewall'] = false

cookbooks/arcgis-enterprise/attributes/portal.rb

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Cookbook Name:: arcgis-enterprise
33
# Attributes:: portal
44
#
5-
# Copyright 2022-2024 Esri
5+
# Copyright 2022-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.
@@ -57,11 +57,11 @@
5757
else
5858
portal['admin_password'] = ENV['ARCGIS_PORTAL_ADMIN_PASSWORD']
5959
end
60-
portal['admin_email'] = 'admin@mydomain.com'
60+
portal['admin_email'] = nil
6161
portal['admin_full_name'] = 'Administrator'
6262
portal['admin_description'] = 'Initial account administrator'
63-
portal['security_question'] = 'Your favorite ice cream flavor?'
64-
portal['security_question_answer'] = 'bacon'
63+
portal['security_question_index'] = 1
64+
portal['security_question_answer'] = nil
6565
portal['keystore_file'] = ''
6666
if ENV['ARCGIS_PORTAL_KEYSTORE_PASSWORD'].nil?
6767
portal['keystore_password'] = nil
@@ -71,6 +71,7 @@
7171
portal['cert_alias'] = portal_domain_name
7272
portal['root_cert'] = ''
7373
portal['root_cert_alias'] = ''
74+
portal['import_certificate_chain'] = true
7475
portal['allssl'] = true
7576
portal['tomcat_java_opts'] = ''
7677
portal['configure_autostart'] = true
@@ -81,6 +82,7 @@
8182

8283
portal['security']['user_store_config'] = {'type' => 'BUILTIN', 'properties' => {}}
8384
portal['security']['role_store_config'] = {'type' => 'BUILTIN', 'properties' => {}}
85+
portal['security']['config'] = nil
8486

8587
portal['log_level'] = 'WARNING'
8688
portal['max_log_file_age'] = 90
@@ -100,6 +102,9 @@
100102

101103
portal['webgisdr_properties'] = {}
102104
portal['webgisdr_timeout'] = 36000 # 10 hours
105+
106+
portal['email_settings'] = nil
107+
portal['user_default_settings'] = nil
103108

104109
case node['platform']
105110
when 'windows'
@@ -114,6 +119,11 @@
114119
portal['patch_registry'] ='SOFTWARE\\ESRI\\Portal for ArcGIS\\Updates'
115120

116121
case node['arcgis']['version']
122+
when '11.5'
123+
portal['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
124+
'Portal_for_ArcGIS_Windows_115_195367.exe').gsub('/', '\\')
125+
portal['product_code'] = '{366A0EAF-7974-4EA3-9A43-74D76FB77C47}'
126+
portal['unpack_options'] = '/x'
117127
when '11.4'
118128
portal['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
119129
'Portal_for_ArcGIS_Windows_114_192940.exe').gsub('/', '\\')
@@ -183,6 +193,9 @@
183193
portal['lp-setup'] = node['arcgis']['server']['setup']
184194

185195
case node['arcgis']['version']
196+
when '11.5'
197+
portal['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
198+
'Portal_for_ArcGIS_Linux_115_195451.tar.gz')
186199
when '11.4'
187200
portal['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
188201
'Portal_for_ArcGIS_Linux_114_192978.tar.gz')

cookbooks/arcgis-enterprise/attributes/server.rb

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Cookbook Name:: arcgis-enterprise
33
# Attributes:: server
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.
@@ -63,6 +63,7 @@
6363
server['cert_alias'] = server_domain_name
6464
server['root_cert'] = ''
6565
server['root_cert_alias'] = ''
66+
server['import_certificate_chain'] = true
6667
server['system_properties'] = {}
6768
server['log_level'] = 'WARNING'
6869
server['max_log_file_age'] = 90
@@ -145,6 +146,15 @@
145146
'ServerConfigurationUtility.exe').gsub('/', '\\')
146147

147148
case node['arcgis']['version']
149+
when '11.5'
150+
server['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
151+
'ArcGIS_Server_Windows_115_195344.exe').gsub('/', '\\')
152+
server['product_code'] = '{BBFCF183-6CB3-409F-A855-21D48C5F079B}'
153+
default['arcgis']['python']['runtime_environment'] = File.join(
154+
server_install_dir,
155+
'framework\\runtime\\ArcGIS\\bin\\Python\\envs\\arcgispro-py3').gsub('/', '\\')
156+
server['patch_registry'] ='SOFTWARE\\ESRI\\Server11.5\\Updates'
157+
server['unpack_options'] = '/x'
148158
when '11.4'
149159
server['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
150160
'ArcGIS_Server_Windows_114_192938.exe').gsub('/', '\\')
@@ -254,6 +264,9 @@
254264
server['lp-setup'] = node['arcgis']['server']['setup']
255265

256266
case node['arcgis']['version']
267+
when '11.5'
268+
server['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
269+
'ArcGIS_Server_Linux_115_195440.tar.gz')
257270
when '11.4'
258271
server['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
259272
'ArcGIS_Server_Linux_114_192977.tar.gz')

cookbooks/arcgis-enterprise/attributes/webadaptor.rb

Lines changed: 81 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Cookbook Name:: arcgis-enterprise
33
# Attributes:: webadaptor
44
#
5-
# Copyright 2024 Esri
5+
# Copyright 2024-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.
@@ -18,7 +18,7 @@
1818

1919
default['arcgis']['web_adaptor'].tap do |web_adaptor|
2020

21-
web_adaptor['admin_access'] = false
21+
web_adaptor['admin_access'] = true
2222
web_adaptor['install_system_requirements'] = true
2323
web_adaptor['setup_archive'] = ''
2424
web_adaptor['product_codes'] = []
@@ -37,6 +37,54 @@
3737
'Tools\\ConfigureWebAdaptor.exe').gsub('/', '\\')
3838

3939
case node['arcgis']['version']
40+
when '11.5'
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_115_195371.exe').gsub('/', '\\')
46+
web_adaptor['product_codes'] = [
47+
'{B87FD5D1-7ED0-424B-8A79-CE4B231CF085}', '{A944DC16-D9B0-4FEC-AAFB-9CC9D5D45414}',
48+
'{CACEC5F2-E484-40E5-BC3E-D82A19554E40}', '{EC659D96-A962-4F04-AF02-42CDD3CC8C6A}',
49+
'{7D357A92-E949-4322-95D5-6EB58640C078}', '{4782E831-37C1-4B83-B975-9D0E0F373135}',
50+
'{CC3694A7-F3EC-4358-9F06-DD1D2EBC4B1D}', '{BD0A6A4E-4B75-48E9-8ABF-9774E7960CAB}',
51+
'{43E50FE3-F1E4-416C-924D-9604296C2090}', '{276501DB-F08D-4489-BF02-D12430E7BB5C}',
52+
'{BE613B94-61AF-4B48-A0CA-DDCB134CE9CA}', '{F3D1F822-9CE3-46CE-8ACA-8CFD737F6604}',
53+
'{155FF541-DB93-49F4-BB01-B5495F707807}', '{5A969923-9741-4FA9-81AB-13B776DFF16E}',
54+
'{BFBAA84A-008F-493F-B6D3-EC12AD4C57BD}', '{72A84420-32D8-462F-968B-92F25B02D73C}',
55+
'{F048814A-3140-461F-A399-13F234344AF0}', '{ADD92D5D-540E-4532-AB53-DA19D76FFBE2}',
56+
'{E594184E-A395-49AB-860F-6EA29C50423F}', '{F2C56B3D-BA68-413F-9916-C2CDCEDD9C7E}',
57+
'{7ADDF6BE-4277-4814-A31C-DF36D0ADE5E3}', '{362763DC-B9B5-46E8-80AB-17C082646B2A}',
58+
'{A3B15EFA-172D-40EF-B5B9-382777992697}', '{83C7DEB5-C160-4520-9F45-1B2C1A55B5C0}',
59+
'{A0B36D8D-9551-4EDA-974E-9ED1CEC5151A}', '{AAD36199-6837-4865-8692-02BA825874B7}',
60+
'{DD14E295-6798-407E-A5A0-870C8341577E}', '{E25BD1CE-3A98-4833-B021-E5F1FB613F21}',
61+
'{5118D9DB-543E-45EA-AE06-08A0A67143A1}', '{DCBFF94C-763C-4F36-A10C-2AFD9A335334}',
62+
'{DD063BF3-0D8E-4E58-B295-C48827E13893}', '{59062D7E-E4E7-4567-9634-4E51F42D6BCA}',
63+
'{C26ABB80-29AF-4328-834E-A3C0ECF298B4}', '{0654FE83-95A5-481E-B5B2-61A3FEDFA5C4}',
64+
'{77EE6E4F-5A1D-4DBB-9688-027DA4DF3BAB}', '{2558441D-97F6-419A-9AF9-A0F4D56C1AC4}',
65+
'{468A6A59-C347-4B59-952F-697390488CE3}', '{003BAC29-91FE-4185-A90B-945F82847E67}',
66+
'{817458AC-05F3-4A68-AD26-A6E894EAECD5}', '{5C2E1A0C-B17C-4CA0-B230-4934C4AD11CF}',
67+
'{CE3DAA74-A08E-46B1-B963-8552A486F9C2}', '{2EBA8AD2-0DA0-4143-B878-9FD1303635A3}',
68+
'{CD758D69-D265-4053-A62F-AF4525F61BD5}', '{709E6312-B1F0-48A6-8347-5186CDF5AD07}',
69+
'{2CB5A7D6-51DA-4CD1-ADF9-4F7036E8D36B}', '{9A94211B-33E6-4311-9B0D-3CD1BBCEE423}',
70+
'{73E65AC0-BE55-4BDC-8586-9CC9634C692D}', '{513D8FE8-4999-4D9C-98A4-03F9EBC5B50C}',
71+
'{777F527D-2D43-4430-8E8F-A93B71FA1C4D}', '{C74184F9-8D73-4F9A-8C47-187F28B9A92A}',
72+
'{6FA4997E-158E-4A9B-A093-7473A259500E}'
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) 11.5\\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/b/d/8/bd882ec4-12e0-481a-9b32-0fae8e3c0b78/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.4'
4189
web_adaptor['setup'] = ::File.join(node['arcgis']['repository']['setups'],
4290
"ArcGIS #{node['arcgis']['version']}",
@@ -242,6 +290,32 @@
242290
# Product codes used to uninstall ArcGIS Web Adaptor during upgrades.
243291
# The list includes the first two-four product codes form each supported ArcGIS version.
244292
web_adaptor['all_product_codes'] = [
293+
'{B87FD5D1-7ED0-424B-8A79-CE4B231CF085}', '{A944DC16-D9B0-4FEC-AAFB-9CC9D5D45414}', # 11.5
294+
'{CACEC5F2-E484-40E5-BC3E-D82A19554E40}', '{EC659D96-A962-4F04-AF02-42CDD3CC8C6A}',
295+
'{7D357A92-E949-4322-95D5-6EB58640C078}', '{4782E831-37C1-4B83-B975-9D0E0F373135}',
296+
'{CC3694A7-F3EC-4358-9F06-DD1D2EBC4B1D}', '{BD0A6A4E-4B75-48E9-8ABF-9774E7960CAB}',
297+
'{43E50FE3-F1E4-416C-924D-9604296C2090}', '{276501DB-F08D-4489-BF02-D12430E7BB5C}',
298+
'{BE613B94-61AF-4B48-A0CA-DDCB134CE9CA}', '{F3D1F822-9CE3-46CE-8ACA-8CFD737F6604}',
299+
'{155FF541-DB93-49F4-BB01-B5495F707807}', '{5A969923-9741-4FA9-81AB-13B776DFF16E}',
300+
'{BFBAA84A-008F-493F-B6D3-EC12AD4C57BD}', '{72A84420-32D8-462F-968B-92F25B02D73C}',
301+
'{F048814A-3140-461F-A399-13F234344AF0}', '{ADD92D5D-540E-4532-AB53-DA19D76FFBE2}',
302+
'{E594184E-A395-49AB-860F-6EA29C50423F}', '{F2C56B3D-BA68-413F-9916-C2CDCEDD9C7E}',
303+
'{7ADDF6BE-4277-4814-A31C-DF36D0ADE5E3}', '{362763DC-B9B5-46E8-80AB-17C082646B2A}',
304+
'{A3B15EFA-172D-40EF-B5B9-382777992697}', '{83C7DEB5-C160-4520-9F45-1B2C1A55B5C0}',
305+
'{A0B36D8D-9551-4EDA-974E-9ED1CEC5151A}', '{AAD36199-6837-4865-8692-02BA825874B7}',
306+
'{DD14E295-6798-407E-A5A0-870C8341577E}', '{E25BD1CE-3A98-4833-B021-E5F1FB613F21}',
307+
'{5118D9DB-543E-45EA-AE06-08A0A67143A1}', '{DCBFF94C-763C-4F36-A10C-2AFD9A335334}',
308+
'{DD063BF3-0D8E-4E58-B295-C48827E13893}', '{59062D7E-E4E7-4567-9634-4E51F42D6BCA}',
309+
'{C26ABB80-29AF-4328-834E-A3C0ECF298B4}', '{0654FE83-95A5-481E-B5B2-61A3FEDFA5C4}',
310+
'{77EE6E4F-5A1D-4DBB-9688-027DA4DF3BAB}', '{2558441D-97F6-419A-9AF9-A0F4D56C1AC4}',
311+
'{468A6A59-C347-4B59-952F-697390488CE3}', '{003BAC29-91FE-4185-A90B-945F82847E67}',
312+
'{817458AC-05F3-4A68-AD26-A6E894EAECD5}', '{5C2E1A0C-B17C-4CA0-B230-4934C4AD11CF}',
313+
'{CE3DAA74-A08E-46B1-B963-8552A486F9C2}', '{2EBA8AD2-0DA0-4143-B878-9FD1303635A3}',
314+
'{CD758D69-D265-4053-A62F-AF4525F61BD5}', '{709E6312-B1F0-48A6-8347-5186CDF5AD07}',
315+
'{2CB5A7D6-51DA-4CD1-ADF9-4F7036E8D36B}', '{9A94211B-33E6-4311-9B0D-3CD1BBCEE423}',
316+
'{73E65AC0-BE55-4BDC-8586-9CC9634C692D}', '{513D8FE8-4999-4D9C-98A4-03F9EBC5B50C}',
317+
'{777F527D-2D43-4430-8E8F-A93B71FA1C4D}', '{C74184F9-8D73-4F9A-8C47-187F28B9A92A}',
318+
'{6FA4997E-158E-4A9B-A093-7473A259500E}',
245319
'{A1EEF9DE-E054-461A-BAB8-EE7FF8C8C6E6}', '{37A3BCC2-9A76-4D87-AC2A-993582ECF891}', # 11.4
246320
'{51D04E2F-9196-43DC-950E-173EED1290D4}', '{5C9B7DA6-01DC-425E-BA94-427DDE199959}',
247321
'{D7BDB359-3BCE-4153-A570-7948C6097FF4}', '{6827D461-6440-4C74-9F83-7D7BF9F57F93}',
@@ -346,6 +420,9 @@
346420
web_adaptor['lp-setup'] = node['arcgis']['web_adaptor']['setup']
347421

348422
case node['arcgis']['version']
423+
when '11.5'
424+
web_adaptor['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
425+
'ArcGIS_Web_Adaptor_Java_Linux_115_195462.tar.gz')
349426
when '11.4'
350427
web_adaptor['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
351428
'ArcGIS_Web_Adaptor_Java_Linux_114_192983.tar.gz')
@@ -396,4 +473,6 @@
396473

397474
# Starting from ArcGIS 10.8.1 Web Adaptor registration supports 'ReindexPortalContent' option.
398475
web_adaptor['reindex_portal_content'] = true
476+
477+
web_adaptor['war_file'] = 'arcgis.war'
399478
end

cookbooks/arcgis-enterprise/attributes/webstyles.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
'ArcGISWebStyles', 'Setup.exe').tr('/', '\\')
2525

2626
case node['arcgis']['version']
27+
when '11.5'
28+
webstyles['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
29+
'Portal_for_ArcGIS_Web_Styles_Windows_115_195369.exe').tr('/', '\\')
30+
webstyles['product_code'] = '{58668668-FCF9-400D-B3DF-24A3E0417C00}'
2731
when '11.4'
2832
webstyles['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
2933
'Portal_for_ArcGIS_Web_Styles_Windows_114_192942.exe').tr('/', '\\')
@@ -57,6 +61,9 @@
5761
'WebStyles', 'WebStyles-Setup.sh')
5862

5963
case node['arcgis']['version']
64+
when '11.5'
65+
webstyles['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
66+
'Portal_for_ArcGIS_Web_Styles_Linux_115_195200.tar.gz')
6067
when '11.4'
6168
webstyles['setup_archive'] = ::File.join(node['arcgis']['repository']['archives'],
6269
'Portal_for_ArcGIS_Web_Styles_Linux_114_192979.tar.gz')

0 commit comments

Comments
 (0)