mirror of
https://github.com/geerlingguy/ansible-for-devops.git
synced 2024-05-19 06:50:03 +00:00
13 lines
312 B
YAML
13 lines
312 B
YAML
---
|
|
- hosts: all
|
|
|
|
tasks:
|
|
- name: Ensure apt cache is updated.
|
|
apt: update_cache=yes cache_valid_time=600
|
|
|
|
- name: Ensure the older Python 2 pip is available.
|
|
package: name=python-pip state=present
|
|
|
|
# HTTPS Self-Signed Certificate test.
|
|
- include: ../https-self-signed/provisioning/main.yml
|