Add pterodactyl
This commit is contained in:
parent
0ab895da40
commit
6d13f2d599
4 changed files with 28 additions and 1 deletions
2
pterodactyl/init.ansible.yml
Normal file
2
pterodactyl/init.ansible.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
- import_playbook: panel.ansible.yml
|
||||
- import_playbook: wings.ansible.yml
|
11
pterodactyl/panel.ansible.yml
Normal file
11
pterodactyl/panel.ansible.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
- hosts: localhost
|
||||
tasks:
|
||||
- name: Install pterodactyl panel
|
||||
package:
|
||||
state: present
|
||||
name:
|
||||
- pterodactyl-panel-compose
|
||||
- name: Enable pterodactyl-panel service
|
||||
service:
|
||||
name: pterodactyl-panel-compose
|
||||
enabled: true
|
11
pterodactyl/wings.ansible.yml
Normal file
11
pterodactyl/wings.ansible.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
- hosts: localhost
|
||||
tasks:
|
||||
- name: Install pterodactyl wings
|
||||
package:
|
||||
state: present
|
||||
name:
|
||||
- pterodactyl-wings
|
||||
- name: Enable pterodactyl-wings service
|
||||
service:
|
||||
name: pterodactyl-wings
|
||||
enabled: true
|
|
@ -13,4 +13,7 @@
|
|||
when: installation_type == 'proxy'
|
||||
- name: Setup Podman
|
||||
import_playbook: podman/init.ansible.yml
|
||||
when: installation_type == 'gaming'
|
||||
when: installation_type == 'gaming'
|
||||
- name: Setup Pterodactyl
|
||||
import_playbook: pterodactyl/init.ansible.yml
|
||||
when: installation_type == 'gaming'
|
||||
|
|
Loading…
Reference in a new issue