Skip to content

Commit

Permalink
Merge pull request #460 from shailesh91/sg/v4.1.0Release
Browse files Browse the repository at this point in the history
Module Release - v4.1.0
  • Loading branch information
shailesh91 authored Apr 25, 2023
2 parents ebd5e9a + f58039e commit 8621f7a
Show file tree
Hide file tree
Showing 139 changed files with 6,762 additions and 2,233 deletions.
6 changes: 3 additions & 3 deletions Modules/ArcGIS/ArcGIS.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Esri
#
# Generated on: 1/20/2023
# Generated on: 04/20/2023
#

@{
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '4.0.2'
ModuleVersion = '4.1.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -107,7 +107,7 @@
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = 'ArcGIS Module for PowerShell DSC - 4.0.2'
ReleaseNotes = 'ArcGIS Module for PowerShell DSC - 4.1.0'

# External dependent modules of this module
# ExternalModuleDependencies = ''
Expand Down
92 changes: 69 additions & 23 deletions Modules/ArcGIS/ArcGIS.psm1

Large diffs are not rendered by default.

1,013 changes: 510 additions & 503 deletions Modules/ArcGIS/Configurations-Azure/BaseDeploymentSingleTierConfiguration.ps1

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
param(
[Parameter(Mandatory=$false)]
[System.String]
$Version = '11.0'
$Version = '11.1'

,[Parameter(Mandatory=$true)]
[ValidateNotNullorEmpty()]
Expand Down Expand Up @@ -155,8 +155,7 @@
{
Name = 'ArcGIS Data Store'
RunAsAccount = $ServiceCredential
ForceRunAsAccountUpdate = $True
Ensure = 'Present'
Ensure = 'Present'
DependsOn = if(-Not($ServiceCredentialIsDomainAccount)){ @('[User]ArcGIS_RunAsAccount','[ArcGIS_WindowsService]ArcGIS_DataStore_Service')}else{ @('[ArcGIS_WindowsService]ArcGIS_DataStore_Service')}
DataDir = $DataStoreContentDirectory
IsDomainAccount = $ServiceCredentialIsDomainAccount
Expand Down Expand Up @@ -223,7 +222,7 @@
DependsOn = $DataStoreDependsOn
}

foreach($ServiceToStop in @('ArcGIS Server', 'Portal for ArcGIS', 'ArcGISGeoEvent', 'ArcGISGeoEventGateway', 'ArcGIS Notebook Server', 'ArcGIS Mission Server'))
foreach($ServiceToStop in @('ArcGIS Server', 'Portal for ArcGIS', 'ArcGISGeoEvent', 'ArcGISGeoEventGateway', 'ArcGIS Notebook Server', 'ArcGIS Mission Server', 'WorkflowManager'))
{
if(Get-Service $ServiceToStop -ErrorAction Ignore)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
param(
[Parameter(Mandatory=$false)]
[System.String]
$Version = '11.0',
$Version = '11.1',

[System.Management.Automation.PSCredential]
$ServiceCredential,
Expand Down
Loading

0 comments on commit 8621f7a

Please sign in to comment.