ansible: break task to copy additional config files to own file 71/53971/2
authorGordon Kelly <gordon.kelly@intel.com>
Fri, 16 Mar 2018 10:16:55 +0000 (10:16 +0000)
committerGordon Kelly <gordon.kelly@intel.com>
Fri, 16 Mar 2018 10:58:23 +0000 (10:58 +0000)
Change-Id: Iffba385bd8e565459288f95eadf8a52bb6cc0084
Signed-off-by: Gordon Kelly <gordon.kelly@intel.com>
docker/ansible/roles/config_files/tasks/additional_configs.yml [new file with mode: 0644]
docker/ansible/roles/config_files/tasks/main.yml

diff --git a/docker/ansible/roles/config_files/tasks/additional_configs.yml b/docker/ansible/roles/config_files/tasks/additional_configs.yml
new file mode 100644 (file)
index 0000000..28cad8a
--- /dev/null
@@ -0,0 +1,23 @@
+#Copyright 2018 OPNFV and Intel Corporation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+---
+
+- name: copy additional configuration files to target system
+  template:
+    src: "{{ item }}"
+    dest: "{{ config_file_dir }}/{{ item | basename | regex_replace('\\.j2','') }}"
+  with_fileglob:
+    - "{{ additional_configs_path }}"
+  tags:
+    - copy_additional_configs
index 7d3919a..52535a0 100644 (file)
 - name: enable ipmi plugin
   include: ipmi.yml
 
-- name: copy additional configuration files to target system
-  template:
-    src: "{{ item }}"
-    dest: "{{ config_file_dir }}/{{ item | basename | regex_replace('\\.j2','') }}"
-  tags:
-   - always
-   - copy_additional_configs
-  with_fileglob:
-    - "{{ additional_configs_path }}"
+- name: copy additional config files
+  include: additional_configs.yml