Compare commits

..

2 Commits

View File

@ -2,7 +2,7 @@
hosts: ipads hosts: ipads
gather_facts: no gather_facts: no
tasks: tasks:
- name: Set ssh to use password auth - name: Get ssh password from password-store
set_fact: set_fact:
ansible_ssh_pass: "{{ lookup('passwordstore', 'servers/cms/mobile@ipads') | d(omit) }}" ansible_ssh_pass: "{{ lookup('passwordstore', 'servers/cms/mobile@ipads') | d(omit) }}"
- name: Get ssh pub key - name: Get ssh pub key
@ -27,4 +27,4 @@
local_action: command scp -r ./python_2.7.6-3_iphoneos-arm.deb "{{ inventory_hostname }}:" local_action: command scp -r ./python_2.7.6-3_iphoneos-arm.deb "{{ inventory_hostname }}:"
- name: install python 2.7 - name: install python 2.7
become: true become: true
raw: dpkg -i python_2.7.6-3_iphoneos-arm.deb && rm python_2.7.6-3_iphoneos-arm.deb; apt-get install -f raw: dpkg -i python_2.7.6-3_iphoneos-arm.deb && rm python_2.7.6-3_iphoneos-arm.deb; apt-get install -f -y