Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miquido/ansible-base
Base ansible. The project was made by Miquido. https://www.miquido.com/
https://github.com/miquido/ansible-base
Last synced: 5 days ago
JSON representation
Base ansible. The project was made by Miquido. https://www.miquido.com/
- Host: GitHub
- URL: https://github.com/miquido/ansible-base
- Owner: miquido
- License: mit
- Created: 2019-01-15T13:33:31.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-16T08:27:11.000Z (over 4 years ago)
- Last Synced: 2024-11-09T11:35:01.270Z (2 months ago)
- Homepage:
- Size: 29.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ansible-base
[![License](https://img.shields.io/badge/license-MIT%20License-brightgreen.svg)](https://opensource.org/licenses/MIT)
[![Twitter URL](https://img.shields.io/twitter/follow/miquido.svg?style=social&label=Follow%20%40Miquido)](https://twitter.com/miquido)## Synopsis
This role provides basic system configuration.
## Variables
Installing needed system packages:
```
needed_packages:
- python-pip
- qemu-guest-agent
```Additional system packages (it doesn't overwrite the "needed_packages" variable):
```
needed_packages_extra: []
```Installing needed Python modules:
```
needed_python_modules:
- docker-py
```Additional Python modules (it doesn't overwrite the "needed_python_modules" variable):
```
needed_python_modules_extra: []
```Setting the correct timezone:
```
system_time_zone: Europe/Warsaw
```## Usage
```
---- hosts: all
become: yes
gather_facts: False
roles:
- ansible-base
```