This repository has been archived on 2023-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
loki/ansible/python.yml

17 lines
287 B
YAML
Raw Normal View History

2018-12-16 01:25:02 +01:00
---
- hosts: server
gather_facts: no
vars_files:
- secrets.yml
pre_tasks:
- name: Use default SSH port
set_fact:
2018-12-16 12:21:37 +01:00
ansible_port: "{{ default_ssh_port }}"
2018-12-16 01:25:02 +01:00
tasks:
- name: Install python2
2019-12-14 23:04:28 +01:00
raw: apt-get -y install python python-pip python-setuptools