https://github.com/hostinger/ansible-collection-common
Collection of Ansible roles for configuring Linux servers used at Hostinger.
https://github.com/hostinger/ansible-collection-common
ansible
Last synced: 12 days ago
JSON representation
Collection of Ansible roles for configuring Linux servers used at Hostinger.
- Host: GitHub
- URL: https://github.com/hostinger/ansible-collection-common
- Owner: hostinger
- License: apache-2.0
- Created: 2023-11-09T07:57:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-02-06T13:43:01.000Z (5 months ago)
- Last Synced: 2026-02-06T21:09:49.686Z (5 months ago)
- Topics: ansible
- Language: Jinja
- Homepage: https://galaxy.ansible.com/ui/namespaces/hostinger/
- Size: 62.5 KB
- Stars: 15
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Hostinger Common Ansible Collection
Collection of Ansible roles for configuring Linux servers.
## Installation
Before using this collection, install it with `ansible-galaxy`:
```bash
ansible-galaxy collection install hostinger.common
```
You can also include it in a `requirements.yml` file:
```yaml
collections:
- name: hostinger.common
```
and install it with:
```bash
ansible-galaxy collection install -r requirements.yml
```
## Usage
To use a role from this collection, prefix it with `hostinger.common`:
```yaml
- hosts: all
roles:
- role: hostinger.common.sysctl
vars:
sysctl_d: {}
```
## Contributing
Contributions are welcome! For instructions, please refer to the [Contributing](CONTRIBUTING.md) guide.
## License
See [LICENSE](LICENSE).