Skip to content

Commit

Permalink
fix: 🐛 Update SQL Download to 2022 Eval
Browse files Browse the repository at this point in the history
Signed-off-by: Zach Stein <[email protected]>
  • Loading branch information
Synzack committed Jun 16, 2024
1 parent a393780 commit 51fbfae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion roles/ludus_sccm_sql/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ ludus_sccm_site_server_hostname: 'sccm-sitesrv'
ludus_sccm_sql_server_hostname: 'sccm-sql'
ludus_sccm_sql_svc_account_username: 'sqlsccmsvc'
ludus_sccm_sql_svc_account_password: 'Password123'
ludus_sccm_sql2022_url: https://download.microsoft.com/download/4/0/2/4027643f-d845-4250-ae93-e66854ee1de6/SQLServer2022-x64-ENU.iso
ludus_sccm_sql2022_url: https://download.microsoft.com/download/3/8/d/38de7036-2433-4207-8eae-06e247e17b25/SQLServer2022-x64-ENU.iso
6 changes: 3 additions & 3 deletions roles/ludus_sccm_sql/tasks/config_sql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
ansible.builtin.include_tasks:
file: download_file.yml
vars:
ludus_sccm_file_name: enu_sql_server_2022_standard_edition_x64_dvd_43079f69.iso
ludus_sccm_file_name: SQLServer2022-x64-ENU.iso
ludus_sccm_url: "{{ ludus_sccm_sql2022_url }}"
ludus_sccm_host_path: "C:\\ludus\\sccm"

- name: Mount SQL ISO
community.windows.win_disk_image:
image_path: C:\ludus\sccm\enu_sql_server_2022_standard_edition_x64_dvd_43079f69.iso
image_path: C:\ludus\sccm\SQLServer2022-x64-ENU.iso
state: present
register: disk_image_out

Expand Down Expand Up @@ -48,5 +48,5 @@

- name: Unmount ISO
community.windows.win_disk_image:
image_path: C:\ludus\sccm\enu_sql_server_2022_standard_edition_x64_dvd_43079f69.iso
image_path: C:\ludus\sccm\SQLServer2022-x64-ENU.iso
state: absent

0 comments on commit 51fbfae

Please sign in to comment.