https://github.com/mcandre/ansible-curl
an Ansible playbook for installing cURL
https://github.com/mcandre/ansible-curl
Last synced: 5 months ago
JSON representation
an Ansible playbook for installing cURL
- Host: GitHub
- URL: https://github.com/mcandre/ansible-curl
- Owner: mcandre
- Created: 2018-08-06T20:43:13.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-24T13:57:37.000Z (about 5 years ago)
- Last Synced: 2025-02-01T23:37:21.698Z (over 1 year ago)
- Language: Makefile
- Size: 25.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 45
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ansible-curl: an Ansible playbook for installing/uninstalling cURL
# EXAMPLE
```console
$ ansible-playbook -i hosts.ini playbooks/install-curl.yml.j2
$ curl -s http://icanhazip.com
1.2.3.4
$ ansible-playbook -i hosts.ini playbooks/uninstall-curl.yml.j2
$ command -V curl
-bash: command: curl: not found
```
# RUNTIME REQUIREMENTS
* [Ansible](https://www.ansible.com/) 2+
# TESTTIME REQUIREMENTS
* [tonixxx](https://github.com/mcandre/tonixxx) 0.0.8
* [Vagrant](https://www.vagrantup.com/)
## Optional
* [stank](https://github.com/mcandre/stank) (e.g. `go get github.com/mcandre/stank/...`)
* [Python](https://www.python.org) 3+ (for yamllint)
* [Node.js](https://nodejs.org/en/) (for eclint)
# TEST
```console
$ tonixxx boil
```
# CLEAN
```console
$ tonixxx clean
```