Skip to content

Commit 44a7028

Browse files
Fixup
1 parent 2e88472 commit 44a7028

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

molecule/default/verify.yml

+10-6
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,15 @@
1414

1515
- name: Initialize the composer project
1616
community.general.composer:
17-
command: create-project
18-
arguments: "punktde/roadrunner-test /var/www/current ~1.0"
17+
command: init
18+
arguments: >-
19+
--name punktde/roadrunner-test
20+
--description=
21+
--type=project
22+
--author=
23+
--homepage=
24+
--no-interaction
1925
working_dir: "/var/www/current"
20-
prefer_dist: true
21-
2226

2327
- name: Install PHP dependencies
2428
community.general.composer:
@@ -30,7 +34,7 @@
3034
- "spiral/roadrunner"
3135
- "spiral/roadrunner-http"
3236

33-
- name: Create the current_release folder
37+
- name: Create the current_release public folder
3438
ansible.builtin.file:
3539
dest: "{{ item }}"
3640
state: "directory"
@@ -52,7 +56,7 @@
5256
state: "present"
5357
stop_before_removing: yes
5458

55-
- name: Check that a page returns successfully but fail if the word AWESOME 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
5660
ansible.builtin.uri:
5761
url: http://localhost:8080
5862
return_content: true

0 commit comments

Comments
 (0)