Skip to content

Commit

Permalink
added new line at end of file
Browse files Browse the repository at this point in the history
  • Loading branch information
XaverStiensmeier committed Aug 12, 2024
1 parent 22e9d8d commit ee68247
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions resources/playbook/roles/bibigrid/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

- name: Setup common software and dependencies for Debian
when: "ansible_distribution_file_variety == 'Debian'"
tags: ["pkg"]
tags: [ "pkg" ]

Check failure on line 34 in resources/playbook/roles/bibigrid/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / linting-job

yaml[brackets]

Too many spaces inside brackets
block:
- name: Running 001-apt.yaml
debug:
Expand All @@ -40,39 +40,39 @@

- name: Setup common software and dependencies for RedHat
when: "ansible_distribution_file_variety == 'RedHat'"
tags: ["pkg"]
tags: [ "pkg" ]

Check failure on line 43 in resources/playbook/roles/bibigrid/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / linting-job

yaml[brackets]

Too many spaces inside brackets
block:
- debug:
msg: "[BIBIGRID] Setup common software and dependencies"
- import_tasks: 001-yum.yaml

- name: Configure Wireguard for VPNs
when: "'vpn' in group_names and wireguard is defined"
tags: ["vpn"]
tags: [ "vpn" ]

Check failure on line 51 in resources/playbook/roles/bibigrid/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / linting-job

yaml[brackets]

Too many spaces inside brackets
block:
- debug:
msg: "[BIBIGRID] Configure Wireguard for VPNs"
- import_tasks: 002-wireguard-vpn.yaml

- name: Setup DNS
when: "'master' in group_names"
tags: ["dns"]
tags: [ "dns" ]

Check failure on line 59 in resources/playbook/roles/bibigrid/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / linting-job

yaml[brackets]

Too many spaces inside brackets
block:
- debug:
msg: "[BIBIGRID] Setup DNS"
- import_tasks: 003-dns.yaml

- name: Update host file on worker
when: "'workers' in group_names"
tags: ["host"]
tags: [ "host" ]

Check failure on line 67 in resources/playbook/roles/bibigrid/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / linting-job

yaml[brackets]

Too many spaces inside brackets
block:
- debug:
msg: "[BIBIGRID] Update hosts"
- import_tasks: 004-update-hosts.yaml

- name: Configure database
when: "'master' in group_names"
tags: ["database", "slurm"]
tags: [ "database", "slurm" ]

Check failure on line 75 in resources/playbook/roles/bibigrid/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / linting-job

yaml[brackets]

Too many spaces inside brackets
block:
- debug:
msg: "[BIBIGRID] Configure database"
Expand All @@ -81,7 +81,7 @@
- name: Setup additional binary executables /usr/local/bin/
when:
- "'master' in group_names"
tags: ["bin"]
tags: [ "bin" ]

Check failure on line 84 in resources/playbook/roles/bibigrid/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / linting-job

yaml[brackets]

Too many spaces inside brackets
block:
- debug:
msg: "[BIBIGRID] Setup additional binary executables /usr/local/bin/"
Expand All @@ -90,7 +90,7 @@
- name: Setup Zabbix Agent
when:
- enable_zabbix|default(false)|bool
tags: ["zabbix"]
tags: [ "zabbix" ]

Check failure on line 93 in resources/playbook/roles/bibigrid/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / linting-job

yaml[brackets]

Too many spaces inside brackets
block:
- debug:
msg: "[BIBIGRID] Setup Zabbix Agent"
Expand All @@ -102,20 +102,20 @@
msg: "[BIBIGRID] Generate directory structure available on all hosts"
- name: Generate general directory structure available on all hosts
import_tasks: 020-disk.yaml
tags: ["disk"]
tags: [ "disk" ]

Check failure on line 105 in resources/playbook/roles/bibigrid/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / linting-job

yaml[brackets]

Too many spaces inside brackets
- name: Generate server directory structure available on all hosts
import_tasks: 020-disk-server.yaml
when: "'master' in group_names"
tags: ["disk"]
tags: [ "disk" ]

Check failure on line 109 in resources/playbook/roles/bibigrid/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / linting-job

yaml[brackets]

Too many spaces inside brackets
- name: Generate worker directory structure available on all hosts
import_tasks: 020-disk-worker.yaml
when: "'master' not in group_names"
tags: ["disk"]
tags: [ "disk" ]

- name: Setup NFS
when:
- enable_nfs|default(false)|bool
tags: ["nfs"]
tags: [ "nfs" ]
block:
- debug:
msg: "[BIBIGRID] Setup NFS"
Expand All @@ -128,10 +128,10 @@
debug:
msg: "[BIBIGRID] Setup Docker"
- import_tasks: 030-docker.yaml
tags: ["docker"]
tags: [ "docker" ]

- name: Setup Slurm
tags: ["slurm"]
tags: [ "slurm" ]
block:
- debug:
msg: "[BIBIGRID] Setup Slurm"
Expand All @@ -144,17 +144,17 @@
when:
- enable_ide|default(false)|bool
- "'master' in group_names"
tags: ["theia"]
tags: [ "theia" ]
block:
- debug:
msg: "[BIBIGRID] Setup Theia"
- import_tasks: 900-theia.yaml

- name: APT Reactivate Auto Update
when: "ansible_distribution_file_variety == 'Debian'"
tags: ["pkg"]
tags: [ "pkg" ]
block:
- name: Running 999-apt-reactivate-auto-update.yaml
debug:
msg: "[BIBIGRID] APT Reactivate Auto Update"
- import_tasks: 999-apt-reactivate-auto-update.yaml
- import_tasks: 999-apt-reactivate-auto-update.yaml

0 comments on commit ee68247

Please sign in to comment.