From 5698c2946f6a27b9c5a64b1b3401da816fd873c1 Mon Sep 17 00:00:00 2001 From: Sumanth Lingappa <42572246+sumanth-lingappa@users.noreply.github.com> Date: Mon, 27 Nov 2023 19:20:14 +0530 Subject: [PATCH] removed wrong ansible-galaxy command --- migrating_from_v1_v2.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/migrating_from_v1_v2.md b/migrating_from_v1_v2.md index ae5a51d53..5adbac51c 100644 --- a/migrating_from_v1_v2.md +++ b/migrating_from_v1_v2.md @@ -2,6 +2,7 @@ > Both `citrix.adc` and `netscaler.adc` can be used in the same Ansible playbook. However, it is recommended to migrate to `netscaler.adc` collection. + 1. List of supported modules can be found at [Supported Modules](./supported_modules_matrix.md). 1. For any non supported modules, please raise an issue at the issue section of the repository. 2. Meanwhile, you can use the `citrix_adc_nitro_request` and `citrix_adc_nitro_response` modules of the `citrix.adc` collection to perform the operations. @@ -10,23 +11,20 @@ > Examples on using `netscaler.adc` collection can be found at [examples](./examples/). -1. Remove `citrix.adc` collection from the system. + +1. Install `netscaler.adc` collection. ```bash - ansible-galaxy collection remove citrix.adc + ansible-galaxy collection install netscaler.adc ``` -2. Install `netscaler.adc` collection. - - TBD - -3. Update the playbooks to use `netscaler.adc` collection. +2. Update the playbooks to use `netscaler.adc` collection. - 3.1. If the playbooks are using `citrix.adc` collection, update the playbooks to use `netscaler.adc` collection. + 2.1. If the playbooks are using `citrix.adc` collection, update the playbooks to use `netscaler.adc` collection. > It is recommended by Ansible to use fully qualified collection name in the playbooks. - 3.2. If the playbook tasks are using bindings in `citrix.adc`, then update the bindings to use `netscaler.adc` collection bindings. + 2.2. If the playbook tasks are using bindings in `citrix.adc`, then update the bindings to use `netscaler.adc` collection bindings. The above steps are shown in the following example.