Skip to content

Commit b3e096f

Browse files
authored
Merge pull request #495 from ripleymj/fix-linter-warnings
Fix linter warnings
2 parents 845d520 + 05af35c commit b3e096f

File tree

16 files changed

+20
-30
lines changed

16 files changed

+20
-30
lines changed

roles/adv_prog_pkgs/meta/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ galaxy_info:
44
description: Installs the advanced programming packages mostly used in CS261
55
company: James Madison University
66
license: MIT
7-
min_ansible_version: 2.1
8-
github_branch: main
7+
min_ansible_version: '2.9'
98
platforms:
109
- name: Ubuntu
1110
versions:

roles/basic_prog_pkgs/meta/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ galaxy_info:
44
description: Installs introductory programming packages
55
company: James Madison University
66
license: MIT
7-
min_ansible_version: 2.1
8-
github_branch: main
7+
min_ansible_version: '2.9'
98
platforms:
109
- name: Ubuntu
1110
versions:

roles/common/meta/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ galaxy_info:
44
description: Installs the shortcuts to easily re-run the VM tasks
55
company: James Madison University
66
license: MIT
7-
min_ansible_version: 2.1
8-
github_branch: main
7+
min_ansible_version: '2.9'
98
platforms:
109
- name: Ubuntu
1110
versions:

roles/common/templates/CustomMintReportInfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
# Since we don't have much choice in the structure of this class since we're
3131
# specializing a required class, we need to ignore related pylint errors.
32-
# pylint: disable=no-self-use,unused-argument
32+
# pylint: disable=unused-argument
3333
class Report(InfoReport):
3434
"""
3535
Override of mintreport's InfoReport

roles/eclipse/meta/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ galaxy_info:
44
description: Installs the Eclipse IDE
55
company: James Madison University
66
license: MIT
7-
min_ansible_version: 2.1
8-
github_branch: main
7+
min_ansible_version: '2.9'
98
platforms:
109
- name: Ubuntu
1110
versions:

roles/eclipse/tasks/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
ansible.builtin.stat:
99
path: '{{ eclipse.zip }}'
1010
register: st
11-
- block:
11+
- name: Download and unpack Eclipse
12+
block:
1213
- name: Fetch Eclipse bundle
1314
ansible.builtin.get_url:
1415
url: '{{ eclipse.url }}'

roles/filezilla/meta/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ galaxy_info:
44
description: Installs Filezilla
55
company: James Madison University
66
license: MIT
7-
min_ansible_version: 2.1
8-
github_branch: main
7+
min_ansible_version: '2.9'
98
platforms:
109
- name: Ubuntu
1110
versions:

roles/finch/meta/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ galaxy_info:
44
description: Installs the tools and scripts needed to use Finch robots
55
company: James Madison University
66
license: MIT
7-
min_ansible_version: 2.1
8-
github_branch: main
7+
min_ansible_version: '2.9'
98
platforms:
109
- name: Ubuntu
1110
versions:

roles/jgrasp/meta/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ galaxy_info:
44
description: Installs the jGRASP IDE
55
company: James Madison University
66
license: MIT
7-
min_ansible_version: 2.1
8-
github_branch: main
7+
min_ansible_version: '2.9'
98
platforms:
109
- name: Ubuntu
1110
versions:

roles/jgrasp/tasks/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
ansible.builtin.stat:
1313
path: '{{ jgrasp.install_path }}/internal_bin/sys_run'
1414
register: wedge
15-
- block:
15+
- name: Download and unpack jGRASP
16+
block:
1617
- name: Fetch jGRASP zip
1718
ansible.builtin.get_url:
1819
url: '{{ jgrasp.url }}'
@@ -32,7 +33,8 @@
3233
group: root
3334
mode: "0755"
3435
when: zip.stat.checksum|default("") != jgrasp.hash
35-
- block:
36+
- name: Configure and build jGRASP wedge
37+
block:
3638
- name: Configure jGRASP wedge build
3739
command:
3840
cmd: './configure'

0 commit comments

Comments
 (0)