Skip to content
Snippets Groups Projects
Commit c7800619 authored by Jörg Sachse's avatar Jörg Sachse
Browse files

style: satisfy linter

parent 0efd38c9
Branches main
No related tags found
No related merge requests found
Pipeline #6109 passed
...@@ -37,6 +37,8 @@ use_default_rules: true ...@@ -37,6 +37,8 @@ use_default_rules: true
skip_list: skip_list:
- skip_this_tag - skip_this_tag
- git-latest - git-latest
- name[casing]
- package-latest
# Any rule that has the 'opt-in' tag will not be loaded unless its 'id' is # Any rule that has the 'opt-in' tag will not be loaded unless its 'id' is
# mentioned in the enable_list: # mentioned in the enable_list:
......
...@@ -5,6 +5,6 @@ ...@@ -5,6 +5,6 @@
src: "{{ item.src }}" src: "{{ item.src }}"
state: "{{ item.state | default('mounted') }}" state: "{{ item.state | default('mounted') }}"
fstype: "nfs" fstype: "nfs"
opts: "ro,{{ item.opts | default( nfs_opts.v3 ) }}" opts: "ro,{{ item.opts | default(nfs_opts.v3) }}"
loop: "{{ nfs_shares }}" loop: "{{ nfs_shares }}"
tags: [notest] tags: [notest]
...@@ -7,9 +7,12 @@ ...@@ -7,9 +7,12 @@
- "nfs_mounts.vault" - "nfs_mounts.vault"
tags: [always] tags: [always]
- ansible.builtin.import_tasks: "configure_ssh_keys.yml" - name: Configure SSH keys
ansible.builtin.import_tasks: "configure_ssh_keys.yml"
tags: [ssh, deploykey] tags: [ssh, deploykey]
- ansible.builtin.import_tasks: "install_ibmsp_client.yml" - name: Install IBMSP/TSM Client
ansible.builtin.import_tasks: "install_ibmsp_client.yml"
tags: [ibmsp, tsm, backup] tags: [ibmsp, tsm, backup]
- ansible.builtin.import_tasks: "configure_nfs_mounts.yml" - name: Configure NFS mounts
ansible.builtin.import_tasks: "configure_nfs_mounts.yml"
tags: [nfs] tags: [nfs]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment