mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-08-25 07:21:49 -07:00
fixing ansible-lint errors, fix gcsfuse
Ansible-lint is required for Ansible collection certification for Automation Hub. gcsfuse had no metadata associated with it, failing the Ansible Hub upload.
This commit is contained in:
parent
a9545c77a4
commit
4907356bba
16 changed files with 71 additions and 33 deletions
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
- name: gcsfuse | Ensure gpg is installed
|
||||
ansible.builtin.apt: name=gnupg
|
||||
ansible.builtin.apt:
|
||||
name: "gnupg"
|
||||
register: task_result
|
||||
until: task_result is success
|
||||
retries: 10
|
||||
|
@ -18,7 +19,9 @@
|
|||
filename: gcsfuse
|
||||
|
||||
- name: gcsfuse | Install gcsfuse
|
||||
ansible.builtin.apt: name=gcsfuse update_cache=yes
|
||||
ansible.builtin.apt:
|
||||
name: "gcsfuse"
|
||||
update_cache: "yes"
|
||||
register: task_result
|
||||
until: task_result is success
|
||||
retries: 10
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
---
|
||||
# tasks file for google.cloud.gcsfuse
|
||||
- name: main
|
||||
ansible.builtin.include_tasks: "{{ ansible_os_family|lower }}.yml"
|
||||
- name: Main
|
||||
ansible.builtin.include_tasks: "{{ ansible_os_family | lower }}.yml"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue