https://github.com/darkwizard242/ansible-role-tilix
Ansible role for Tilix. Available on Ansible Galaxy.
https://github.com/darkwizard242/ansible-role-tilix
ansible ansible-galaxy ansible-role linux terminal-emulator tilix
Last synced: 2 months ago
JSON representation
Ansible role for Tilix. Available on Ansible Galaxy.
- Host: GitHub
- URL: https://github.com/darkwizard242/ansible-role-tilix
- Owner: darkwizard242
- License: mit
- Created: 2019-09-01T04:55:46.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-02T20:50:36.000Z (almost 2 years ago)
- Last Synced: 2026-01-03T22:55:55.389Z (6 months ago)
- Topics: ansible, ansible-galaxy, ansible-role, linux, terminal-emulator, tilix
- Language: Python
- Homepage: https://galaxy.ansible.com/darkwizard242/tilix
- Size: 39.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/darkwizard242/ansible-role-tilix/actions?query=workflow%3Abuild-and-test) [](https://github.com/darkwizard242/ansible-role-tilix/actions?query=workflow%3Arelease)   [](https://sonarcloud.io/dashboard?id=ansible-role-tilix) [](https://sonarcloud.io/dashboard?id=ansible-role-tilix) [](https://sonarcloud.io/dashboard?id=ansible-role-tilix)  
# Ansible Role: tilix
Role to install (_by default_) [tilix](https://gnunn1.github.io/tilix-web/) package or uninstall (_if passed as var_) on **Ubuntu 18.04** and **Debian 10** systems.
## Requirements
None.
## Role Variables
Available variables are listed below (located in `defaults/main.yml`):
### Variables list:
```yaml
tilix_app: tilix
tilix_desired_state: present
```
### Variables table:
Variable | Description
------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------
tilix_app | Defines the app to install on Debian based systems i.e. **tilix**
tilix_desired_state | Defined to dynamically select whether to install (i.e. either `present` or `latest`) or uninstall (i.e. `absent`) the package. Default set to `present`.
## Dependencies
None
## Example Playbook
For default behaviour of role (i.e. installation of **tilix** package) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.tilix
```
For customizing behavior of role (i.e. installation of latest **tilix** package) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.tilix
vars:
tilix_desired_state: latest
```
For customizing behavior of role (i.e. un-installation of **tilix** package) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.tilix
vars:
tilix_desired_state: absent
```
## License
[MIT](https://github.com/darkwizard242/ansible-role-tilix/blob/master/LICENSE)
## Author Information
This role was created by [Ali Muhammad](https://www.alimuhammad.dev/).