diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c099a84..3516227 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,16 @@ veeamhub.veeam Release Notes This changelog describes changes after version 1.5.0. +v2.2.2 +====== + +Bugfixes +-------- + +- Fixed incorrect ISO specified for Veeam ONE v12 (https://github.com/VeeamHub/veeam-ansible/issues/65) +- Fixed SQL Express installation account not being created (https://github.com/VeeamHub/veeam-ansible/issues/66) + + v2.2.1 ====== diff --git a/galaxy.yml b/galaxy.yml index c5778f0..a35d9d4 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: "veeamhub" name: "veeam" -version: "2.2.1" +version: "2.2.2" readme: "readme_galaxy.md" authors: - "Chris Arceneaux (https://www.arsano.ninja/)" diff --git a/roles/veeam_vas/tasks/one_install_pretasks.yml b/roles/veeam_vas/tasks/one_install_pretasks.yml index 3991b26..13041c8 100644 --- a/roles/veeam_vas/tasks/one_install_pretasks.yml +++ b/roles/veeam_vas/tasks/one_install_pretasks.yml @@ -15,7 +15,7 @@ groups: - Administrators when: - - create_service_account | bool + - one_create_service_account | bool - one_username.find("\\") == -1 # skips account creation if domain account is specified - name: Install System CLR Types ansible.windows.win_package: diff --git a/roles/veeam_vas/vars/one_v12.yml b/roles/veeam_vas/vars/one_v12.yml index 45300cb..32ada72 100644 --- a/roles/veeam_vas/vars/one_v12.yml +++ b/roles/veeam_vas/vars/one_v12.yml @@ -1,8 +1,8 @@ --- # ONE v12 vars file for veeamhub.veeam_vas -iso_url: "https://download2.veeam.com/VBR/v12/VeeamBackup&Replication_12.0.0.1420_P20230718_20230906.iso" -iso_checksum: "a390ca763f4feb4aeab3922146def6655b39fd5a" +iso_url: "https://download2.veeam.com/VONE/v12/VeeamONE_12.0.1.2591_20230314.iso" +iso_checksum: "f28da79bbf8a0ac9d1542f5e68ff6975faf14bf2" destination_iso_file: "one.iso" destination_license_file: "one-license.lic" sql_express_file: "{{ source }}Redistr\\x64\\SqlExpress\\SQLEXPRADV_x64_ENU.exe"