diff options
author | Øystein Bedin <oybed@users.noreply.github.com> | 2017-06-16 13:25:27 -0400 |
---|---|---|
committer | Ryan Cook <rcook@redhat.com> | 2017-06-16 10:25:27 -0700 |
commit | 7ba2ef768b25b99f628c88a8e6348a8d0df630a0 (patch) | |
tree | d96d9d6f202955cf980b043376eeedb36482ebc9 /roles/openshift-prep/tasks | |
parent | a6bf0552961c7b8c63639850fd0501941e89938f (diff) | |
download | openshift-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')
-rw-r--r-- | roles/openshift-prep/tasks/main.yml | 4 | ||||
-rw-r--r-- | roles/openshift-prep/tasks/prerequisites.yml | 35 |
2 files changed, 0 insertions, 39 deletions
diff --git a/roles/openshift-prep/tasks/main.yml b/roles/openshift-prep/tasks/main.yml deleted file mode 100644 index 5e484e75f..000000000 --- a/roles/openshift-prep/tasks/main.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -# Starting Point for OpenShift Installation and Configuration -- include: prerequisites.yml - tags: [prerequisites] 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" |