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: 6 months 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-04-16T08:27:11.000Z (over 6 years ago)
- Last Synced: 2025-06-18T21:41:17.128Z (about 1 year ago)
- Homepage:
- Size: 29.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ansible-base
[](https://opensource.org/licenses/MIT)
[](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
```