36 lines
1.0 KiB
YAML
36 lines
1.0 KiB
YAML
#!/usr/bin/env ansible-playbook
|
|
# vim:ft=ansible:
|
|
---
|
|
- hosts: game1.9iron.club
|
|
roles:
|
|
- role: backups
|
|
tags: [ backups ]
|
|
- 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 ]
|
|
- role: terraria
|
|
vars:
|
|
terraria_name: "main"
|
|
terraria_password: "dicks"
|
|
terraria_motd: "New major release edition"
|
|
terraria_port: 7777
|
|
terraria_difficulty: 2
|
|
tags: [ gameserver, terraria ]
|