Initial commit.
parent
e85384907a
commit
efbc06ce42
@ -1,2 +1,38 @@
|
||||
# pip-ansible-role
|
||||
install_pip: Ansible Role
|
||||
=========
|
||||
|
||||
An ansible role to install pip.
|
||||
|
||||
Requirements
|
||||
------------
|
||||
|
||||
None
|
||||
|
||||
Role Variables
|
||||
--------------
|
||||
|
||||
None
|
||||
|
||||
Dependencies
|
||||
------------
|
||||
|
||||
None
|
||||
|
||||
Example Playbook
|
||||
----------------
|
||||
|
||||
```yml
|
||||
- hosts: all
|
||||
roles:
|
||||
- install_pip
|
||||
```
|
||||
|
||||
License
|
||||
----------------------------------------
|
||||
|
||||
MIT
|
||||
|
||||
Author Information
|
||||
----------------------------------------
|
||||
|
||||
This role was created by [shnee](https://github.com/shnee).
|
||||
|
||||
@ -0,0 +1,19 @@
|
||||
galaxy_info:
|
||||
author: shnee
|
||||
description: Install pip.
|
||||
|
||||
license: MIT
|
||||
min_ansible_version: 2.1
|
||||
|
||||
platforms:
|
||||
- name: EL
|
||||
versions:
|
||||
- 8
|
||||
- name: Ubuntu
|
||||
versions:
|
||||
- focal # 20.04
|
||||
galaxy_tags:
|
||||
- python
|
||||
- pip
|
||||
|
||||
dependencies: []
|
||||
@ -0,0 +1,6 @@
|
||||
---
|
||||
- name: Install pip.
|
||||
package:
|
||||
name: python3-pip
|
||||
state: present
|
||||
become: true
|
||||
Loading…
Reference in New Issue