ensure bin dir for coreos before anything else

pull/442/head
Spencer Smith 2016-08-26 13:24:47 -04:00
parent e165bb19a0
commit 82076f90a3
1 changed files with 6 additions and 5 deletions

View File

@ -1,4 +1,10 @@
--- ---
- name: Force binaries directory for CoreOS
set_fact:
bin_dir: "/opt/bin"
when: ansible_os_family == "CoreOS"
- name: 'GIT | Install script for collecting git info' - name: 'GIT | Install script for collecting git info'
template: template:
src: "{{ role_path }}/gen-gitinfos.sh" src: "{{ role_path }}/gen-gitinfos.sh"
@ -24,11 +30,6 @@
- ../vars - ../vars
skip: true skip: true
- name: Force binaries directory for CoreOS
set_fact:
bin_dir: "/opt/bin"
when: ansible_os_family == "CoreOS"
- name: Create kubernetes config directory - name: Create kubernetes config directory
file: file:
path: "{{ kube_config_dir }}" path: "{{ kube_config_dir }}"