Skip to content

Commit ca2fe5d

Browse files
Fixup
1 parent 44a7028 commit ca2fe5d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

molecule/default/verify.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
---
22
- name: Verify
33
hosts: all
44
gather_facts: false
@@ -50,13 +50,13 @@
5050
src: "app.php"
5151
dest: "/var/www/current/app.php"
5252

53-
- name: Enable and start the roadrunner-main service
54-
community.general.supervisorctl:
55-
name: "roadrunner-main"
56-
state: "present"
57-
stop_before_removing: yes
53+
- name: Start the roadrunner-main service
54+
ansible.builtin.service:
55+
name: "roadrunner@main"
56+
state: "started"
57+
enabled: yes
5858

59-
- name: Check that a page returns successfully but fail if the word "Hello world" is not in the page contents
59+
- name: Check that a page returns successfully but fail if the word 'Hello world' is not in the page contents
6060
ansible.builtin.uri:
6161
url: http://localhost:8080
6262
return_content: true

0 commit comments

Comments
 (0)