summaryrefslogtreecommitdiffstats
path: root/roles/openshift-prep/tasks/prerequisites.yml
diff options
context:
space:
mode:
authorØystein Bedin <oybed@users.noreply.github.com>2017-06-16 13:25:27 -0400
committerRyan Cook <rcook@redhat.com>2017-06-16 10:25:27 -0700
commit7ba2ef768b25b99f628c88a8e6348a8d0df630a0 (patch)
treed96d9d6f202955cf980b043376eeedb36482ebc9 /roles/openshift-prep/tasks/prerequisites.yml
parenta6bf0552961c7b8c63639850fd0501941e89938f (diff)
downloadopenshift-7ba2ef768b25b99f628c88a8e6348a8d0df630a0.tar.gz
openshift-7ba2ef768b25b99f628c88a8e6348a8d0df630a0.tar.bz2
openshift-7ba2ef768b25b99f628c88a8e6348a8d0df630a0.tar.xz
openshift-7ba2ef768b25b99f628c88a8e6348a8d0df630a0.zip
Revert "Add an Openstack provider (#397)" (#465)
This reverts commit 94756e66352439d48e5d02b461679bd0f1e121cb.
Diffstat (limited to 'roles/openshift-prep/tasks/prerequisites.yml')
-rw-r--r--roles/openshift-prep/tasks/prerequisites.yml35
1 files changed, 0 insertions, 35 deletions
diff --git a/roles/openshift-prep/tasks/prerequisites.yml b/roles/openshift-prep/tasks/prerequisites.yml
deleted file mode 100644
index 60507636f..000000000
--- a/roles/openshift-prep/tasks/prerequisites.yml
+++ /dev/null
@@ -1,35 +0,0 @@
----
-- name: "Cleaning yum repositories"
- command: "yum clean all"
-
-- name: "Install required packages"
- yum:
- name: "{{ item }}"
- state: latest
- with_items:
- - wget
- - git
- - net-tools
- - bind-utils
- - bridge-utils
- - bash-completion
- - vim-enhanced
-
-- name: "Update all packages (this can take a very long time)"
- yum:
- name: "*"
- state: latest
-
-- name: "Verify hostname"
- shell: hostnamectl status | awk "/Static hostname/"'{ print $3 }'
- register: hostname_fqdn
-
-- name: "Set hostname if required"
- hostname:
- name: "{{ ansible_fqdn }}"
- when: hostname_fqdn.stdout != ansible_fqdn
-
-- name: "Verify SELinux is enforcing"
- fail:
- msg: "SELinux is required for OpenShift and has been detected as '{{ ansible_selinux.config_mode }}'"
- when: ansible_selinux.config_mode != "enforcing"