Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 770 Bytes

README.md

File metadata and controls

43 lines (28 loc) · 770 Bytes

Ansible-PaperMC

Ansible Playbook for PaperMC Minecraft Servers

This playbook is has been tested on and run on a Fedora 36 Server.

Supported Minecraft Versions:

1.18+

Future features:

  • Systemd Unit File

  • Add different version support 1.8-1.18+

  • Popular Bukkit Plugins

  • Follow the Ansible Directory Layout

How to use:

  1. Add your variables
inventory.yaml
---

machines:
  hosts:
    vm01:
      ansible_user: # username
      ansible_host: # Example: 192.168.1.6

      username: "{{ ansible_user }}"
      version: # Example: 1.19
---
  1. Run the playbook
ansible-playbook -i inventory.yaml playbook.yaml -K