Skip to content

Commit c0ea18b

Browse files
authored
Merge #1281 (update ansible-lint to 6.9.0)
2 parents 3d139da + bf3922b commit c0ea18b

File tree

5 files changed

+25
-12
lines changed

5 files changed

+25
-12
lines changed
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
- import_tasks: apt.yml
2-
- import_tasks: security.yml
1+
- name: Import apt tasks
2+
ansible.builtin.import_tasks: apt.yml
3+
4+
- name: Import security tasks
5+
ansible.builtin.import_tasks: security.yml

ansible/roles/db/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- name: Create a PostgreSQL database for this project
1111
become: true
1212
become_user: postgres
13-
ansible.builtin.postgresql_db:
13+
community.postgresql.postgresql_db:
1414
encoding: "UTF-8"
1515
name: "{{ django_database }}"
1616
state: present
@@ -19,7 +19,7 @@
1919
- name: Create a PostgreSQL user for this project
2020
become: true
2121
become_user: postgres
22-
ansible.builtin.postgresql_user:
22+
community.postgresql.postgresql_user:
2323
db: "{{ django_database }}"
2424
name: "{{ database_user }}"
2525
password: "{{ database_password }}"

ansible/roles/web/handlers/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
chdir: "{{ virtualenv_root }}"
2121

2222
- name: Restart gunicorn
23-
ansible.builtin.supervisorctl:
23+
community.general.supervisorctl:
2424
name: gunicorn
2525
state: restarted
2626
become: true
@@ -33,4 +33,5 @@
3333
tags:
3434
- fixtures
3535

36-
- import_tasks: sentry.yml
36+
- name: Import sentry tasks
37+
ansible.builtin.import_tasks: sentry.yml

ansible/roles/web/tasks/main.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1-
- import_tasks: redis.yml
2-
- import_tasks: nginx.yml
3-
- import_tasks: letsencrypt.yml
4-
- import_tasks: django.yml
5-
- import_tasks: pretalx.yml
1+
- name: Import redis tasks
2+
ansible.builtin.import_tasks: redis.yml
3+
4+
- name: Import nginx tasks
5+
ansible.builtin.import_tasks: nginx.yml
6+
7+
- name: Import letsencrypt tasks
8+
ansible.builtin.import_tasks: letsencrypt.yml
9+
10+
- name: Import django tasks
11+
ansible.builtin.import_tasks: django.yml
12+
13+
- name: Import pretalx tasks
14+
ansible.builtin.import_tasks: pretalx.yml

requirements/development.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r staging.txt
22
ansible==7.0.0
3-
ansible-lint==6.7.0
3+
ansible-lint==6.9.0
44
coverage==6.5.0
55
factory_boy==3.2.1
66
flake8==6.0.0

0 commit comments

Comments
 (0)