Skip to content

Commit b7913c6

Browse files
alessfggdzien
authored andcommitted
Fix line limit Ansible lint warnings (#106)
1 parent 8695f49 commit b7913c6

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

defaults/main.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,28 @@ nginx_install_from: nginx_repository
1919

2020
# Choose where to fetch the NGINX signing key from.
2121
# Default is the official NGINX signing key host.
22-
nginx_signing_key: http://nginx.org/keys/nginx_signing.key
22+
# nginx_signing_key: http://nginx.org/keys/nginx_signing.key
2323

2424
# Specify source repository for NGINX Open Source.
2525
# Only works if 'install_from' is set to 'nginx_repository'.
2626
# Defaults are the official NGINX repositories.
2727
nginx_repository:
2828
debian:
29-
- deb https://nginx.org/packages/{{ (nginx_branch == 'mainline') | ternary('mainline/', '') }}{{ ansible_distribution|lower }}/ {{ ansible_distribution_release }} nginx
30-
- deb-src https://nginx.org/packages/{{ (nginx_branch == 'mainline') | ternary('mainline/', '') }}{{ ansible_distribution|lower }}/ {{ ansible_distribution_release }} nginx
29+
- >-
30+
deb https://nginx.org/packages/{{ (nginx_branch == 'mainline')
31+
| ternary('mainline/', '') }}{{ ansible_distribution|lower }}/ {{ ansible_distribution_release }} nginx
32+
- >-
33+
deb-src https://nginx.org/packages/{{ (nginx_branch == 'mainline')
34+
| ternary('mainline/', '') }}{{ ansible_distribution|lower }}/ {{ ansible_distribution_release }} nginx
3135
redhat:
32-
- https://nginx.org/packages/{{ (nginx_branch == 'mainline') | ternary('mainline/', '') }}{{ (ansible_distribution == "RedHat") | ternary('rhel/', 'centos/') }}{{ ansible_distribution_major_version|int }}/$basearch/
36+
- >-
37+
https://nginx.org/packages/{{ (nginx_branch == 'mainline')
38+
| ternary('mainline/', '') }}{{ (ansible_distribution == "RedHat")
39+
| ternary('rhel/', 'centos/') }}{{ ansible_distribution_major_version|int }}/$basearch/
3340
suse:
34-
- https://nginx.org/packages/{{ (nginx_branch == 'mainline') | ternary('mainline/', '') }}sles/12
41+
- >-
42+
https://nginx.org/packages/{{ (nginx_branch == 'mainline')
43+
| ternary('mainline/', '') }}sles/12
3544
3645
# Specify which branch of NGINX Open Source you want to install.
3746
# Options are 'mainline' or 'stable'.

0 commit comments

Comments
 (0)