1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00
iiab/roles/minetest/tasks/main.yml

110 lines
3.1 KiB
YAML
Raw Normal View History

2019-02-10 17:33:30 +00:00
# Calculate local variables
- include_tasks: calc_vars.yml
2019-02-08 01:01:52 +00:00
- name: Check for minetest world file ({{ minetest_world_dir }}/world.mt)
2019-02-06 16:41:24 +00:00
stat:
path: "{{ minetest_world_dir }}/world.mt"
register: minetest_world
- name: Create /library/games
2019-02-08 22:45:43 +00:00
file:
state: directory
path: "{{ item }}"
owner: root
group: root
mode: 0755
with_items:
- /library/games
2019-02-06 16:41:24 +00:00
# rpi only
- include_tasks: rpi_minetest_install.yml
2019-02-10 17:33:30 +00:00
when: not minetest_world.stat.exists and is_rpi
2019-02-06 16:41:24 +00:00
# not rpi
- include_tasks: minetest_install.yml
2019-02-10 17:33:30 +00:00
when: not minetest_world.stat.exists and not is_rpi
- git:
repo: https://github.com/Calinou/carbone-ng.git
dest: "{{ minetest_game_dir }}"
depth: 1
2019-02-10 18:09:43 +00:00
when: not minetest_world.stat.exists and minetest_default_game == "carbone-ng"
2019-02-10 17:33:30 +00:00
- name: Give minetest user ownership of carbone-ng
file:
state: directory
path: "{{ minetest_game_dir }}"
recurse: yes
owner: "{{ minetest_runas_user }}"
group: "{{ minetest_runas_group }}"
mode: 0755
when: minetest_default_game == "carbone-ng"
# Install games
#- include: minetest_install_games.yml
# with_items:
# - name: carbone-ng
# url: https://github.com/Calinou/carbone-ng
2019-02-06 16:41:24 +00:00
# Install mods
- include: minetest_install_mods.yml
with_items:
2019-02-08 00:21:42 +00:00
- name: moreblocks
url: https://github.com/minetest-mods/moreblocks/archive/master.zip
- name: moreores
url: https://github.com/Calinou/moreores/archive/master.zip
- name: basic_materials
url: https://gitlab.com/VanessaE/basic_materials/-/archive/master/basic_materials-master.zip
- name: mesecons
url: https://github.com/minetest-mods/mesecons/archive/master.zip
- name: digilines
url: https://github.com/minetest-mods/digilines/archive/master.zip
- name: pipeworks
url: https://github.com/minetest-mods/pipeworks/archive/master.zip
- name: Minetest-WorldEdit
url: https://github.com/Uberi/Minetest-WorldEdit/archive/master.zip
2019-02-10 17:33:30 +00:00
when: minetest_default_game == "minetest"
- name: Remove mod from carbone-ng that prevents our Admin name
file:
state: absent
path: "{{ minetest_game_dir }}/mods/name_restrictions"
when: minetest_default_game == "carbone-ng"
2019-02-06 16:41:24 +00:00
# enable or disable
- name: Enable & Restart 'minetest-server' service
2019-02-08 01:01:52 +00:00
systemd:
daemon_reload: yes
name: minetest-server
2019-02-06 16:41:24 +00:00
enabled: yes
state: restarted
when: minetest_enabled | bool
2019-02-06 16:41:24 +00:00
- name: Disable 'minetest-server' service
2019-02-08 01:01:52 +00:00
systemd:
daemon_reload: yes
name: minetest-server
2019-02-06 16:41:24 +00:00
enabled: no
state: stopped
2019-02-10 17:33:30 +00:00
when: not minetest_enabled
2019-02-06 16:41:24 +00:00
- name: Add 'minetest' variable values to {{ iiab_ini_file }}
ini_file:
path: "{{ iiab_ini_file }}"
section: minetest
option: "{{ item.option }}"
value: "{{ item.value }}"
with_items:
2019-02-08 15:09:14 +00:00
- option: name
value: Minetest Server
- option: description
value: '"Minetest is an open source clone of the Minecraft building blocks game."'
- option: minetest_world_dir
value: "{{ minetest_world_dir }}"
- option: minetest_port
value: "{{ minetest_port }}"
- option: minetest_enabled
value: "{{ minetest_enabled }}"
- option: minetest_world_dir
value: "{{ minetest_world_dir }}"