summaryrefslogtreecommitdiffstats
path: root/qtip/driver/ansible/playbook/prepare_env.yaml
diff options
context:
space:
mode:
authorzhihui wu <wu.zhihui1@zte.com.cn>2017-02-20 02:52:13 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-02-20 02:52:13 +0000
commitd8713999a5dda9e87442de7290d1c460b9021cce (patch)
treea186cdcb2418b0a2d306d9ecde192ee3ff7d6ceb /qtip/driver/ansible/playbook/prepare_env.yaml
parentcdb8e1be12b724e9f68c7e46c9a653ec37c502cb (diff)
parente958f3c5db5dd095e0debcb64e1ae581c2966e07 (diff)
Merge "code refactor: ansible playbook about system info"
Diffstat (limited to 'qtip/driver/ansible/playbook/prepare_env.yaml')
-rw-r--r--qtip/driver/ansible/playbook/prepare_env.yaml42
1 files changed, 42 insertions, 0 deletions
diff --git a/qtip/driver/ansible/playbook/prepare_env.yaml b/qtip/driver/ansible/playbook/prepare_env.yaml
new file mode 100644
index 00000000..0595d988
--- /dev/null
+++ b/qtip/driver/ansible/playbook/prepare_env.yaml
@@ -0,0 +1,42 @@
+##############################################################################
+# Copyright (c) 2017 ZTE Corporation and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+- name: Epel Release install when CentOS
+ yum:
+ name: epel-release
+ state: present
+ when: ansible_os_family == "RedHat"
+
+- name: Software Properties Common
+ apt:
+ name: software-properties-common
+ state: present
+ when: ansible_os_family == "Debian"
+
+- name: Adding ubuntu backport main repo
+ apt_repository:
+ repo: deb http://archive.ubuntu.com/ubuntu/ {{ansible_distribution_release}}-backports main restricted universe multiverse
+ state: present
+ when: ansible_os_family == "Debian"
+
+- name: Adding ubuntu main repo
+ apt_repository:
+ repo: deb http://archive.ubuntu.com/ubuntu/ {{ansible_distribution_release}} main restricted universe multiverse
+ when: ansible_os_family == "Debian"
+
+- name: Install ansible copy dependencies if remote host has selinux enabled
+ yum:
+ name: libselinux-python
+ state: present
+ when: ansible_os_family == "RedHat"
+
+- name: Install ansiblle copy dependencies if remote host has selinux enaled
+ apt:
+ name: python-selinux
+ state: present
+ when: ansible_os_family == "Debian"