26 lines
772 B
YAML
26 lines
772 B
YAML
#!/usr/bin/env ansible-playbook
|
|
# vim:ft=ansible:
|
|
---
|
|
- hosts: game1.9iron.club
|
|
roles:
|
|
- role: minecraft
|
|
vars:
|
|
mcname: "rotary-main"
|
|
mczip: "https://www.9iron.club/files/rotarypack-server.zip"
|
|
mcforge: "1.7.10-10.13.4.1614-1.7.10"
|
|
mcmotd: "Survival with Rotarycraft edition"
|
|
mcport: 25565
|
|
mcgamemode: 0
|
|
mcleveltype: "default"
|
|
tags: [ gameserver, minecraft ]
|
|
- role: minecraft
|
|
vars:
|
|
mcname: "rotary-test"
|
|
mczip: "https://www.9iron.club/files/rotarypack-server.zip"
|
|
mcforge: "1.7.10-10.13.4.1614-1.7.10"
|
|
mcmotd: "Creative with Rotarycraft edition"
|
|
mcport: 25566
|
|
mcgamemode: 1
|
|
mcleveltype: "flat"
|
|
tags: [ gameserver, minecraft ]
|