Skip to content

Commit bf3922b

Browse files
committed
Capitalize Ansible task names
1 parent f897b14 commit bf3922b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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: 1 addition & 1 deletion
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

0 commit comments

Comments
 (0)