├── .ansible-lint ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── ansible-lint.yml │ ├── build-collection.yml │ └── deploy-collection.yml ├── .gitignore ├── CHANGELOG.rst ├── CONTRIBUTING.md ├── DCO.md ├── LICENSE ├── README.md ├── docs └── docsite │ ├── extra-docs.yml │ ├── links.yml │ └── rst │ └── veeam_vbr_rest.rst ├── galaxy.yml ├── meta └── runtime.yml ├── plugins └── modules │ ├── pending_reboot_check.ps1 │ ├── pending_reboot_check.py │ ├── veeam_software_check.ps1 │ ├── veeam_software_check.py │ ├── veeam_vbr_cloud_connect_maintenance.ps1 │ ├── veeam_vbr_cloud_connect_maintenance.py │ ├── veeam_vbr_config_backup.ps1 │ ├── veeam_vbr_config_backup.py │ ├── veeam_vbr_rest_cloudcredentials_info.py │ ├── veeam_vbr_rest_credentials.py │ ├── veeam_vbr_rest_credentials_info.py │ ├── veeam_vbr_rest_jobs_info.py │ ├── veeam_vbr_rest_jobs_manage.py │ ├── veeam_vbr_rest_managedservers_info.py │ ├── veeam_vbr_rest_repositories_info.py │ ├── veeam_vbr_rest_servercertificate_info.py │ ├── veeam_vbr_set_postgres_database_server_limits.ps1 │ ├── veeam_vbr_set_postgres_database_server_limits.py │ ├── veeam_vbr_upgrade_job_prep.ps1 │ └── veeam_vbr_upgrade_job_prep.py ├── readme_galaxy.md └── roles └── veeam_vas ├── README.md ├── defaults └── main.yml ├── handlers └── main.yml ├── meta └── main.yml ├── tasks ├── em_install.yml ├── em_patch.yml ├── em_upgrade.yml ├── install_net_framework.yml ├── legacy_em_install.yml ├── legacy_em_upgrade.yml ├── legacy_vbr_install.yml ├── legacy_vbr_install_pretasks.yml ├── legacy_vbr_upgrade.yml ├── main.yml ├── mount_iso.yml ├── new_em_install.yml ├── new_em_upgrade.yml ├── new_vbr_install.yml ├── new_vbr_upgrade.yml ├── one_agent_install.yml ├── one_agent_upgrade.yml ├── one_client_install.yml ├── one_client_upgrade.yml ├── one_install_pretasks.yml ├── one_patch.yml ├── one_server_install.yml ├── one_server_upgrade.yml ├── one_web_ui_install.yml ├── one_web_ui_upgrade.yml ├── vbr_console_install.yml ├── vbr_console_upgrade.yml ├── vbr_install.yml ├── vbr_patch.yml └── vbr_upgrade.yml ├── templates ├── EM │ ├── EmAnswerFile_install.xml.j2 │ ├── EmAnswerFile_uninstall.xml.j2 │ └── EmAnswerFile_upgrade.xml.j2 ├── VBR │ ├── VbrAnswerFile_install.xml.j2 │ ├── VbrAnswerFile_uninstall.xml.j2 │ └── VbrAnswerFile_upgrade.xml.j2 └── VBRConsole │ ├── VbrConsoleAnswerFile_install.xml.j2 │ ├── VbrConsoleAnswerFile_uninstall.xml.j2 │ └── VbrConsoleAnswerFile_upgrade.xml.j2 └── vars ├── em_v10.yml ├── em_v11.yml ├── em_v12.yml ├── em_v9.5.yml ├── main.yml ├── one_v10.yml ├── one_v11.yml ├── one_v12.yml ├── one_v9.5.yml ├── vbr_v10.yml ├── vbr_v11.yml ├── vbr_v12.yml └── vbr_v9.5.yml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ansible-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/.github/workflows/ansible-lint.yml -------------------------------------------------------------------------------- /.github/workflows/build-collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/.github/workflows/build-collection.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/.github/workflows/deploy-collection.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/DCO.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/README.md -------------------------------------------------------------------------------- /docs/docsite/extra-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/docs/docsite/extra-docs.yml -------------------------------------------------------------------------------- /docs/docsite/links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/docs/docsite/links.yml -------------------------------------------------------------------------------- /docs/docsite/rst/veeam_vbr_rest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/docs/docsite/rst/veeam_vbr_rest.rst -------------------------------------------------------------------------------- /galaxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/galaxy.yml -------------------------------------------------------------------------------- /meta/runtime.yml: -------------------------------------------------------------------------------- 1 | --- 2 | requires_ansible: '>=2.14.0' 3 | -------------------------------------------------------------------------------- /plugins/modules/pending_reboot_check.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/pending_reboot_check.ps1 -------------------------------------------------------------------------------- /plugins/modules/pending_reboot_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/pending_reboot_check.py -------------------------------------------------------------------------------- /plugins/modules/veeam_software_check.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_software_check.ps1 -------------------------------------------------------------------------------- /plugins/modules/veeam_software_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_software_check.py -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_cloud_connect_maintenance.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_cloud_connect_maintenance.ps1 -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_cloud_connect_maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_cloud_connect_maintenance.py -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_config_backup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_config_backup.ps1 -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_config_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_config_backup.py -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_rest_cloudcredentials_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_rest_cloudcredentials_info.py -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_rest_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_rest_credentials.py -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_rest_credentials_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_rest_credentials_info.py -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_rest_jobs_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_rest_jobs_info.py -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_rest_jobs_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_rest_jobs_manage.py -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_rest_managedservers_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_rest_managedservers_info.py -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_rest_repositories_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_rest_repositories_info.py -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_rest_servercertificate_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_rest_servercertificate_info.py -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_set_postgres_database_server_limits.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_set_postgres_database_server_limits.ps1 -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_set_postgres_database_server_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_set_postgres_database_server_limits.py -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_upgrade_job_prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_upgrade_job_prep.ps1 -------------------------------------------------------------------------------- /plugins/modules/veeam_vbr_upgrade_job_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/plugins/modules/veeam_vbr_upgrade_job_prep.py -------------------------------------------------------------------------------- /readme_galaxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/readme_galaxy.md -------------------------------------------------------------------------------- /roles/veeam_vas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/README.md -------------------------------------------------------------------------------- /roles/veeam_vas/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/defaults/main.yml -------------------------------------------------------------------------------- /roles/veeam_vas/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/handlers/main.yml -------------------------------------------------------------------------------- /roles/veeam_vas/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/meta/main.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/em_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/em_install.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/em_patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/em_patch.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/em_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/em_upgrade.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/install_net_framework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/install_net_framework.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/legacy_em_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/legacy_em_install.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/legacy_em_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/legacy_em_upgrade.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/legacy_vbr_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/legacy_vbr_install.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/legacy_vbr_install_pretasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/legacy_vbr_install_pretasks.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/legacy_vbr_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/legacy_vbr_upgrade.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/main.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/mount_iso.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/mount_iso.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/new_em_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/new_em_install.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/new_em_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/new_em_upgrade.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/new_vbr_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/new_vbr_install.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/new_vbr_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/new_vbr_upgrade.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/one_agent_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/one_agent_install.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/one_agent_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/one_agent_upgrade.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/one_client_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/one_client_install.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/one_client_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/one_client_upgrade.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/one_install_pretasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/one_install_pretasks.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/one_patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/one_patch.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/one_server_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/one_server_install.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/one_server_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/one_server_upgrade.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/one_web_ui_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/one_web_ui_install.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/one_web_ui_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/one_web_ui_upgrade.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/vbr_console_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/vbr_console_install.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/vbr_console_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/vbr_console_upgrade.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/vbr_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/vbr_install.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/vbr_patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/vbr_patch.yml -------------------------------------------------------------------------------- /roles/veeam_vas/tasks/vbr_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/tasks/vbr_upgrade.yml -------------------------------------------------------------------------------- /roles/veeam_vas/templates/EM/EmAnswerFile_install.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/templates/EM/EmAnswerFile_install.xml.j2 -------------------------------------------------------------------------------- /roles/veeam_vas/templates/EM/EmAnswerFile_uninstall.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/templates/EM/EmAnswerFile_uninstall.xml.j2 -------------------------------------------------------------------------------- /roles/veeam_vas/templates/EM/EmAnswerFile_upgrade.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/templates/EM/EmAnswerFile_upgrade.xml.j2 -------------------------------------------------------------------------------- /roles/veeam_vas/templates/VBR/VbrAnswerFile_install.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/templates/VBR/VbrAnswerFile_install.xml.j2 -------------------------------------------------------------------------------- /roles/veeam_vas/templates/VBR/VbrAnswerFile_uninstall.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/templates/VBR/VbrAnswerFile_uninstall.xml.j2 -------------------------------------------------------------------------------- /roles/veeam_vas/templates/VBR/VbrAnswerFile_upgrade.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/templates/VBR/VbrAnswerFile_upgrade.xml.j2 -------------------------------------------------------------------------------- /roles/veeam_vas/templates/VBRConsole/VbrConsoleAnswerFile_install.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/templates/VBRConsole/VbrConsoleAnswerFile_install.xml.j2 -------------------------------------------------------------------------------- /roles/veeam_vas/templates/VBRConsole/VbrConsoleAnswerFile_uninstall.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/templates/VBRConsole/VbrConsoleAnswerFile_uninstall.xml.j2 -------------------------------------------------------------------------------- /roles/veeam_vas/templates/VBRConsole/VbrConsoleAnswerFile_upgrade.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/templates/VBRConsole/VbrConsoleAnswerFile_upgrade.xml.j2 -------------------------------------------------------------------------------- /roles/veeam_vas/vars/em_v10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/em_v10.yml -------------------------------------------------------------------------------- /roles/veeam_vas/vars/em_v11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/em_v11.yml -------------------------------------------------------------------------------- /roles/veeam_vas/vars/em_v12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/em_v12.yml -------------------------------------------------------------------------------- /roles/veeam_vas/vars/em_v9.5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/em_v9.5.yml -------------------------------------------------------------------------------- /roles/veeam_vas/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/main.yml -------------------------------------------------------------------------------- /roles/veeam_vas/vars/one_v10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/one_v10.yml -------------------------------------------------------------------------------- /roles/veeam_vas/vars/one_v11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/one_v11.yml -------------------------------------------------------------------------------- /roles/veeam_vas/vars/one_v12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/one_v12.yml -------------------------------------------------------------------------------- /roles/veeam_vas/vars/one_v9.5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/one_v9.5.yml -------------------------------------------------------------------------------- /roles/veeam_vas/vars/vbr_v10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/vbr_v10.yml -------------------------------------------------------------------------------- /roles/veeam_vas/vars/vbr_v11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/vbr_v11.yml -------------------------------------------------------------------------------- /roles/veeam_vas/vars/vbr_v12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/vbr_v12.yml -------------------------------------------------------------------------------- /roles/veeam_vas/vars/vbr_v9.5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeeamHub/veeam-ansible/HEAD/roles/veeam_vas/vars/vbr_v9.5.yml --------------------------------------------------------------------------------