Merge "use include_tasks instead of include"
This commit is contained in:
commit
a1b14e7a1b
@ -24,13 +24,12 @@
|
|||||||
tags:
|
tags:
|
||||||
- always
|
- always
|
||||||
|
|
||||||
- include: rabbitmq_pre_install.yml
|
- include_tasks: rabbitmq_pre_install.yml
|
||||||
tags:
|
tags:
|
||||||
- rabbitmq_server-install
|
- rabbitmq_server-install
|
||||||
|
|
||||||
# The install process will be skipped if `rabbitmq_ignore_version_state=true`
|
# The install process will be skipped if `rabbitmq_ignore_version_state=true`
|
||||||
- include: rabbitmq_install.yml
|
- include_tasks: rabbitmq_install.yml
|
||||||
static: no
|
|
||||||
when: not rabbitmq_ignore_version_state | bool
|
when: not rabbitmq_ignore_version_state | bool
|
||||||
|
|
||||||
# RabbitMQ SSL/TLS listener configuration
|
# RabbitMQ SSL/TLS listener configuration
|
||||||
@ -43,28 +42,27 @@
|
|||||||
#
|
#
|
||||||
# playbooks/roles/rabbitmq_server/defaults/main.yml
|
# playbooks/roles/rabbitmq_server/defaults/main.yml
|
||||||
#
|
#
|
||||||
- include: rabbitmq_ssl_self_signed.yml
|
- include_tasks: rabbitmq_ssl_self_signed.yml
|
||||||
static: no
|
|
||||||
when: >
|
when: >
|
||||||
rabbitmq_user_ssl_cert is not defined or
|
rabbitmq_user_ssl_cert is not defined or
|
||||||
rabbitmq_user_ssl_key is not defined
|
rabbitmq_user_ssl_key is not defined
|
||||||
tags:
|
tags:
|
||||||
- rabbitmq_server-config
|
- rabbitmq_server-config
|
||||||
|
|
||||||
- include: rabbitmq_ssl_user_provided.yml
|
- include_tasks: rabbitmq_ssl_user_provided.yml
|
||||||
tags:
|
tags:
|
||||||
- rabbitmq_server-config
|
- rabbitmq_server-config
|
||||||
|
|
||||||
- include: rabbitmq_set_cookie.yml
|
- include_tasks: rabbitmq_set_cookie.yml
|
||||||
tags:
|
tags:
|
||||||
- rabbitmq_server-config
|
- rabbitmq_server-config
|
||||||
- rabbitmq-config
|
- rabbitmq-config
|
||||||
|
|
||||||
- include: rabbitmq_post_install.yml
|
- include_tasks: rabbitmq_post_install.yml
|
||||||
tags:
|
tags:
|
||||||
- rabbitmq_server-config
|
- rabbitmq_server-config
|
||||||
|
|
||||||
- include: rabbitmq_cluster.yml
|
- include_tasks: rabbitmq_cluster.yml
|
||||||
tags:
|
tags:
|
||||||
- rabbitmq_server-config
|
- rabbitmq_server-config
|
||||||
- rabbitmq-cluster
|
- rabbitmq-cluster
|
||||||
|
@ -41,8 +41,7 @@
|
|||||||
- "_cluster_name.stdout != rabbitmq_cluster_name"
|
- "_cluster_name.stdout != rabbitmq_cluster_name"
|
||||||
|
|
||||||
- name: Join cluster on secondary nodes
|
- name: Join cluster on secondary nodes
|
||||||
include: rabbitmq_cluster_join.yml
|
include_tasks: rabbitmq_cluster_join.yml
|
||||||
static: no
|
|
||||||
when:
|
when:
|
||||||
- "ansible_hostname != rabbitmq_primary_cluster_node"
|
- "ansible_hostname != rabbitmq_primary_cluster_node"
|
||||||
- "_cluster_name.stdout != rabbitmq_cluster_name"
|
- "_cluster_name.stdout != rabbitmq_cluster_name"
|
||||||
|
@ -13,9 +13,9 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
- include: rabbitmq_upgrade_check.yml
|
- include_tasks: rabbitmq_upgrade_check.yml
|
||||||
|
|
||||||
- include: "install_{{ ansible_pkg_mgr }}.yml"
|
- include_tasks: "install_{{ ansible_pkg_mgr }}.yml"
|
||||||
tags:
|
tags:
|
||||||
- rabbitmq-apt-packages
|
- rabbitmq-apt-packages
|
||||||
- rabbitmq-yum-packages
|
- rabbitmq-yum-packages
|
||||||
@ -41,6 +41,6 @@
|
|||||||
- rabbitmq-policy-file
|
- rabbitmq-policy-file
|
||||||
- rabbitmq_server-config
|
- rabbitmq_server-config
|
||||||
|
|
||||||
- include: rabbitmq_started.yml
|
- include_tasks: rabbitmq_started.yml
|
||||||
tags:
|
tags:
|
||||||
- rabbitmq_server-config
|
- rabbitmq_server-config
|
||||||
|
@ -84,8 +84,7 @@
|
|||||||
- rabbitmq-config
|
- rabbitmq-config
|
||||||
- rabbitmq-cluster
|
- rabbitmq-cluster
|
||||||
|
|
||||||
- include: rabbitmq_restart.yml
|
- include_tasks: rabbitmq_restart.yml
|
||||||
static: no
|
|
||||||
when: rabbit_config is changed or rabbitmq_plugin is changed or rabbitmq_policy is changed
|
when: rabbit_config is changed or rabbitmq_plugin is changed or rabbitmq_policy is changed
|
||||||
|
|
||||||
# This is being done because the rabbitctl command used by the module
|
# This is being done because the rabbitctl command used by the module
|
||||||
|
@ -13,5 +13,5 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
- include: rabbitmq_stopped.yml
|
- include_tasks: rabbitmq_stopped.yml
|
||||||
- include: rabbitmq_started.yml
|
- include_tasks: rabbitmq_started.yml
|
||||||
|
@ -22,13 +22,11 @@
|
|||||||
group: rabbitmq
|
group: rabbitmq
|
||||||
register: cookie_set
|
register: cookie_set
|
||||||
|
|
||||||
- include: rabbitmq_stopped.yml
|
- include_tasks: rabbitmq_stopped.yml
|
||||||
static: no
|
|
||||||
when:
|
when:
|
||||||
- cookie_set is changed
|
- cookie_set is changed
|
||||||
|
|
||||||
- include: rabbitmq_started.yml
|
- include_tasks: rabbitmq_started.yml
|
||||||
static: no
|
|
||||||
when:
|
when:
|
||||||
- cookie_set is changed
|
- cookie_set is changed
|
||||||
|
|
||||||
|
@ -15,11 +15,11 @@
|
|||||||
|
|
||||||
# We create the self-signed SSL certificate and key only on the first
|
# We create the self-signed SSL certificate and key only on the first
|
||||||
# RabbitMQ container.
|
# RabbitMQ container.
|
||||||
- include: rabbitmq_ssl_key_create.yml
|
- include_tasks: rabbitmq_ssl_key_create.yml
|
||||||
when: inventory_hostname == groups[rabbitmq_host_group][0]
|
when: inventory_hostname == groups[rabbitmq_host_group][0]
|
||||||
|
|
||||||
- include: rabbitmq_ssl_key_store.yml
|
- include_tasks: rabbitmq_ssl_key_store.yml
|
||||||
when: inventory_hostname == groups[rabbitmq_host_group][0]
|
when: inventory_hostname == groups[rabbitmq_host_group][0]
|
||||||
|
|
||||||
- include: rabbitmq_ssl_key_distribute.yml
|
- include_tasks: rabbitmq_ssl_key_distribute.yml
|
||||||
when: inventory_hostname != groups[rabbitmq_host_group][0]
|
when: inventory_hostname != groups[rabbitmq_host_group][0]
|
||||||
|
@ -68,6 +68,5 @@
|
|||||||
- rabbitmq-package-rpm
|
- rabbitmq-package-rpm
|
||||||
- rabbitmq-apt-packages
|
- rabbitmq-apt-packages
|
||||||
|
|
||||||
- include: rabbitmq_upgrade_prep.yml
|
- include_tasks: rabbitmq_upgrade_prep.yml
|
||||||
static: no
|
|
||||||
when: rabbitmq_upgrade | bool
|
when: rabbitmq_upgrade | bool
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
- rabbitmq-policy-file
|
- rabbitmq-policy-file
|
||||||
- rabbitmq-upgrade
|
- rabbitmq-upgrade
|
||||||
|
|
||||||
- include: rabbitmq_stopped.yml
|
- include_tasks: rabbitmq_stopped.yml
|
||||||
|
|
||||||
- name: Ensure erlang epmd is stopped
|
- name: Ensure erlang epmd is stopped
|
||||||
shell: |
|
shell: |
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
# Install RabbitMQ server
|
# Install RabbitMQ server
|
||||||
- include: common/test-install-rabbitmq.yml
|
- import_playbook: common/test-install-rabbitmq.yml
|
||||||
|
|
||||||
# Run functional tests
|
# Run functional tests
|
||||||
- include: test-rabbitmq-functional.yml
|
- import_playbook: test-rabbitmq-functional.yml
|
||||||
|
@ -14,4 +14,4 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
# Setup the host
|
# Setup the host
|
||||||
- include: common/test-setup-host.yml
|
- import_playbook: common/test-setup-host.yml
|
||||||
|
@ -14,10 +14,10 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
# Setup the host
|
# Setup the host
|
||||||
- include: common/test-setup-host.yml
|
- import_playbook: common/test-setup-host.yml
|
||||||
|
|
||||||
# Install RabbitMQ server
|
# Install RabbitMQ server
|
||||||
- include: common/test-install-rabbitmq.yml
|
- import_playbook: common/test-install-rabbitmq.yml
|
||||||
|
|
||||||
# Run functional tests
|
# Run functional tests
|
||||||
- include: test-rabbitmq-functional.yml
|
- import_playbook: test-rabbitmq-functional.yml
|
||||||
|
Loading…
Reference in New Issue
Block a user