Skip to content

Commit edbd7b6

Browse files
authored
Galaxy score improvement (#235)
* [702] Use 'galaxy_tags' rather than 'categories' * [702] Tags must contain lowercase letters and digits only, invalid: 'database:nosql' * [201] Trailing whitespace * [303] systemctl used in place of systemd module * Suppress ansible_lint warning [403] Package installs should not use latest. Conditionally install the i686 build of libgcc if we are building 32-bit It must be version-locked with x64 libgcc, so use 'latest' to update libgcc first Otherwise you get a version mismatch error from yum when installing.
1 parent 6140bf4 commit edbd7b6

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

meta/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ galaxy_info:
1818
versions:
1919
- 11
2020
- 12
21-
categories:
21+
galaxy_tags:
2222
- database
23-
- database:nosql
23+
- nosql
2424

2525
dependencies: []

tasks/dependencies.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
name: libgcc
2929
state: latest
3030
when: ansible_os_family == "RedHat" and redis_make_32bit|bool
31+
tags:
32+
- skip_ansible_lint
3133

3234
- name: install redhat 32-bit dependencies
3335
yum:
@@ -36,6 +38,8 @@
3638
- glibc-devel.i686
3739
state: latest
3840
when: ansible_os_family == "RedHat" and redis_make_32bit|bool
41+
tags:
42+
- skip_ansible_lint
3943

4044
- name: install suse dependencies
4145
zypper:
@@ -44,6 +48,6 @@
4448
- make
4549
# These should be `else omit`, but that doesn't quite work, so duplicate gcc
4650
- "{{ 'gcc-32bit' if redis_make_32bit|bool else 'gcc' }}"
47-
- "{{ 'libgcc_s1-32bit' if redis_make_32bit|bool else 'gcc' }}"
51+
- "{{ 'libgcc_s1-32bit' if redis_make_32bit|bool else 'gcc' }}"
4852
state: present
4953
when: ansible_os_family == 'Suse'

tasks/sentinel.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@
4646
- (redis_sentinel_pidfile|dirname).startswith("/var/run") or (redis_sentinel_pidfile|dirname).startswith("/run")
4747

4848
- name: reload systemd daemon
49-
command: systemctl daemon-reload
49+
systemd:
50+
daemon_reload: true
5051
when:
5152
- redis_as_service
5253
- ansible_service_mgr|default() == "systemd"

tasks/server.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@
4646
- (redis_pidfile|dirname).startswith('/var/run') or (redis_pidfile|dirname).startswith('/run')
4747

4848
- name: reload systemd daemon
49-
command: systemctl daemon-reload
49+
systemd:
50+
daemon_reload: true
5051
when:
5152
- redis_as_service
5253
- ansible_service_mgr|default() == "systemd"

0 commit comments

Comments
 (0)