Skip to content

Commit

Permalink
Merge pull request #708 from gpambrozio/patch-1
Browse files Browse the repository at this point in the history
Fix minecraft docker folder creation
  • Loading branch information
davestephens committed May 28, 2024
2 parents e1cc962 + 053459d commit e60c38b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions roles/minecraft-bedrock-server/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
- name: Create Minecraft Bedrock Server Directories
ansible.builtin.file:
path: "{{ item }}"
state: directory
with_items:
- "{{ minecraft_bedrock_server_data_directory }}"

- name: Start Minecraft Bedrock Server
block:
- name: Create Minecraft Bedrock Server Directories
ansible.builtin.file:
path: "{{ item }}"
state: directory
with_items:
- "{{ minecraft_bedrock_server_data_directory }}"

- name: Minecraft Bedrock Server Docker Container
community.docker.docker_container:
name: "{{ minecraft_bedrock_server_container_name }}"
Expand Down

0 comments on commit e60c38b

Please sign in to comment.