Skip to content

Commit

Permalink
Merge pull request chocolatey#989 from JPRuskin/ansiblePlaybookUpdate
Browse files Browse the repository at this point in the history
(doc) Update Default Repository URL for Ansible Playbook
  • Loading branch information
pauby authored May 8, 2024
2 parents 2f2fa15 + ab8f4bf commit d0421f8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions input/en-us/c4b-environments/ansible/client-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ To install the Chocolatey components and on-board clients, you could run an Ansi
url: "https://{{ nexus_fqdn | default(ccm_fqdn) }}:8443/repository/ChocolateyInternal/index.json"
user: "{{ nexus_user | default('chocouser') }}"
password: "{{ nexus_password | mandatory }}"
self_service: true

# You can add more configuration settings here.
chocolatey_config:
Expand Down Expand Up @@ -235,7 +236,7 @@ To install the Chocolatey components and on-board clients, you could run an Ansi
# Download Chocolatey Bootstrap Script
$BootstrapScript = Join-Path $WorkingDirectory "Install-Chocolatey.ps1"
$BootstrapUrl = "$($RepositoryUrl.TrimEnd('/index.json').TrimEnd('ChocolateyInternal'))choco-setup/ChocolateyInstall.ps1"
$BootstrapUrl = "$($RepositoryUrl.TrimEnd('/index.json').TrimEnd('ChocolateyInternal'))choco-install/ChocolateyInstall.ps1"
if (-not (Test-Path $BootstrapScript)) {
Write-Verbose "Downloading '$($BootstrapUrl)'"
$webClient.DownloadFile($BootstrapUrl, $BootstrapScript)
Expand Down Expand Up @@ -347,7 +348,7 @@ To install the Chocolatey components and on-board clients, you could run an Ansi
with_dict:
- CentralManagementServiceUrl: "https://{{ ccm_fqdn }}:24020/ChocolateyManagementService"
- CentralManagementClientCommunicationSaltAdditivePassword: "{{ ccm_client_salt | default(omit) }}"
- centralManagementServiceCommunicationSaltAdditivePassword: "{{ ccm_service_salt | default(omit) }}"
- CentralManagementServiceCommunicationSaltAdditivePassword: "{{ ccm_service_salt | default(omit) }}"
no_log: true

- name: Set Chocolatey Features
Expand Down

0 comments on commit d0421f8

Please sign in to comment.