12 lines
257 B
YAML
Executable File
12 lines
257 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
# vim:ft=ansible:
|
|
# Game servers
|
|
---
|
|
- hosts: tmod1.desu.ltd
|
|
tasks:
|
|
- name: include tasks for gameservers
|
|
include_tasks: tasks/game/{{ item }}
|
|
with_items:
|
|
- terraria-fargo.yml
|
|
tags: [ always ]
|