summaryrefslogtreecommitdiffstats
path: root/qtip/driver/playbook/prepare_env.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'qtip/driver/playbook/prepare_env.yaml')
-rw-r--r--qtip/driver/playbook/prepare_env.yaml54
1 files changed, 0 insertions, 54 deletions
diff --git a/qtip/driver/playbook/prepare_env.yaml b/qtip/driver/playbook/prepare_env.yaml
deleted file mode 100644
index 1ec71520..00000000
--- a/qtip/driver/playbook/prepare_env.yaml
+++ /dev/null
@@ -1,54 +0,0 @@
-##############################################################################
-# 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"
-
-- name: Install rsync when CentOS
- yum:
- name: rsync
- state: present
- when: ansible_os_family == "RedHat"
-
-- name: Install rsync when Ubuntu
- apt:
- name: rsync
- state: present
- when: ansible_os_family == "Debian"