24 lines
712 B
YAML
24 lines
712 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: "We hate ourselves edition"
|
|
mcport: 25565
|
|
mcgamemode: 0
|
|
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: "We hate doing things in survival edition"
|
|
mcport: 25566
|
|
mcgamemode: 1
|
|
tags: [ gameserver, minecraft ]
|