https://github.com/darkwizard242/ansible-role-simplescreenrecorder
Ansible role for SimpleScreenRecorder. Available on Ansible Galaxy.
https://github.com/darkwizard242/ansible-role-simplescreenrecorder
ansible ansible-galaxy ansible-role linux screen-recorder system
Last synced: 3 months ago
JSON representation
Ansible role for SimpleScreenRecorder. Available on Ansible Galaxy.
- Host: GitHub
- URL: https://github.com/darkwizard242/ansible-role-simplescreenrecorder
- Owner: darkwizard242
- License: mit
- Created: 2020-04-15T22:29:02.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-01T21:34:25.000Z (almost 2 years ago)
- Last Synced: 2025-11-27T21:40:13.508Z (7 months ago)
- Topics: ansible, ansible-galaxy, ansible-role, linux, screen-recorder, system
- Language: Python
- Homepage: https://galaxy.ansible.com/darkwizard242/simplescreenrecorder
- Size: 44.9 KB
- Stars: 2
- 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-simplescreenrecorder/actions?query=workflow%3Abuild-and-test) [](https://github.com/darkwizard242/ansible-role-simplescreenrecorder/actions?query=workflow%3Arelease)  [](https://sonarcloud.io/dashboard?id=ansible-role-simplescreenrecorder) [](https://sonarcloud.io/dashboard?id=ansible-role-simplescreenrecorder) [](https://sonarcloud.io/dashboard?id=ansible-role-simplescreenrecorder)  
# Ansible Role: simplescreenrecorder
Role to install (_by default_) [SimpleScreenRecorder](https://github.com/MaartenBaert/ssr) package or uninstall (_if passed as var_) on **Debian** based and **EL** based systems.
## Requirements
None.
## Role Variables
Available variables are listed below (located in `defaults/main.yml`):
### Variables list:
```yaml
simplescreenrecorder_app: simplescreenrecorder
simplescreenrecorder_desired_state: present
```
### Variables table:
Variable | Description
---------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------
simplescreenrecorder_app | Defines the app to install i.e. **simplescreenrecorder**
simplescreenrecorder_desired_state | Defined to dynamically chose whether to install (i.e. either `present` or `latest`) or uninstall (i.e. `absent`) the package. Defaults to `present`.
## Dependencies
None
## Example Playbook
For default behaviour of role (i.e. installation of **simplescreenrecorder** package) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.simplescreenrecorder
```
For customizing behavior of role (i.e. installation of latest **simplescreenrecorder** package) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.simplescreenrecorder
vars:
simplescreenrecorder_desired_state: latest
```
For customizing behavior of role (i.e. un-installation of **simplescreenrecorder** package) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.simplescreenrecorder
vars:
simplescreenrecorder_desired_state: absent
```
## License
[MIT](https://github.com/darkwizard242/ansible-role-simplescreenrecorder/blob/master/LICENSE)
## Author Information
This role was created by [Ali Muhammad](https://www.alimuhammad.dev/).