mirror of
https://github.com/famedly/ansible-collection-base
synced 2024-11-10 06:24:17 +00:00
chore(shell_tweaks): fix lints in role
This commit is contained in:
parent
80089460cd
commit
e4ef42f20a
2 changed files with 11 additions and 18 deletions
|
@ -1,17 +1,11 @@
|
|||
---
|
||||
galaxy_info:
|
||||
author: Evelyn Alicke <e.alicke@famedly.com>
|
||||
description: various tweaks to make the remote shell more usable
|
||||
|
||||
author: "Evelyn Alicke <e.alicke@famedly.com>"
|
||||
description: "various tweaks to make the remote shell more usable"
|
||||
min_ansible_version: "2.13"
|
||||
|
||||
galaxy_tags: []
|
||||
|
||||
platforms:
|
||||
- name: Debian
|
||||
versions:
|
||||
- bullseye
|
||||
|
||||
license: AGPL-3.0-or-later
|
||||
|
||||
- name: "Debian"
|
||||
versions: ["bullseye"]
|
||||
license: "AGPL-3.0-or-later"
|
||||
dependencies: []
|
||||
|
|
|
@ -1,13 +1,12 @@
|
|||
---
|
||||
|
||||
- name: Ensure terminfo packages are present
|
||||
- name: "Ensure terminfo packages are present"
|
||||
apt:
|
||||
name: "{{ shell_tweaks_packages_terminfo }}"
|
||||
state: present
|
||||
when: ansible_facts['pkg_mgr'] == 'apt'
|
||||
state: "present"
|
||||
when: "ansible_facts['pkg_mgr'] == 'apt'"
|
||||
|
||||
- name: Ensure terminfo packages are present
|
||||
- name: "Ensure terminfo packages are present"
|
||||
package:
|
||||
name: "{{ shell_tweaks_packages_terminfo }}"
|
||||
state: present
|
||||
when: ansible_facts['pkg_mgr'] != 'apt'
|
||||
state: "present"
|
||||
when: "ansible_facts['pkg_mgr'] != 'apt'"
|
||||
|
|
Loading…
Reference in a new issue