From 6edfeb1f379465c06da00e9ea84384b2d9ae4286 Mon Sep 17 00:00:00 2001
From: Sam Yaple <sam@yaple.net>
Date: Sun, 16 Aug 2015 04:26:16 +0000
Subject: [PATCH] Update support to control

Change-Id: Icd74a87a0acc5a29f69fdd348966c74408eea2a9
Partially-Implements: blueprint update-configs
---
 ansible/inventory/all-in-one | 14 +++++++-------
 ansible/inventory/multinode  | 22 +++++++++++-----------
 2 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/ansible/inventory/all-in-one b/ansible/inventory/all-in-one
index 58dc01ea4a..a23958aa17 100644
--- a/ansible/inventory/all-in-one
+++ b/ansible/inventory/all-in-one
@@ -1,6 +1,6 @@
 # These initial groups are the only groups required to be modified. The
 # additional groups are for more control of the environment.
-[support]
+[control]
 localhost       ansible_connection=local
 
 [network]
@@ -18,25 +18,25 @@ localhost       ansible_connection=local
 network
 
 [mariadb:children]
-support
+control
 
 [rabbitmq:children]
-support
+control
 
 [keystone:children]
-support
+control
 
 [glance:children]
-support
+control
 
 [nova:children]
-support
+control
 
 [neutron:children]
 network
 
 [cinder:children]
-support
+control
 
 
 # Additional control implemented here. These groups allow you to control which
diff --git a/ansible/inventory/multinode b/ansible/inventory/multinode
index 1d7cb9cc3b..025edcea23 100644
--- a/ansible/inventory/multinode
+++ b/ansible/inventory/multinode
@@ -1,13 +1,13 @@
 # These initial groups are the only groups required to be modified. The
 # additional groups are for more control of the environment.
-[support]
+[control]
 # These hostname must be resolvable from your deployment host
-support01       ansible_ssh_user=sam
-support02       ansible_ssh_user=sam
-support03       ansible_ssh_user=sam
+control01       ansible_ssh_user=sam
+control02       ansible_ssh_user=sam
+control03       ansible_ssh_user=sam
 
 # The above can also be specified as follows:
-#support[01:03]     ansible_ssh_user=sam
+#control[01:03]     ansible_ssh_user=sam
 
 [network]
 network01
@@ -24,25 +24,25 @@ storage01
 network
 
 [mariadb:children]
-support
+control
 
 [rabbitmq:children]
-support
+control
 
 [keystone:children]
-support
+control
 
 [glance:children]
-support
+control
 
 [nova:children]
-support
+control
 
 [neutron:children]
 network
 
 [cinder:children]
-support
+control
 
 
 # Additional control implemented here. These groups allow you to control which
-- 
GitLab