24 lines
615 B
YAML
24 lines
615 B
YAML
- 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
|
|
- name: pterodactyl subuid
|
|
lineinfile:
|
|
state: present
|
|
path: /etc/subuid
|
|
insertafter: EOF
|
|
line: pterodactyl:200000:65536
|
|
- name: pterodactyl subgid
|
|
lineinfile:
|
|
state: present
|
|
path: /etc/subgid
|
|
insertafter: EOF
|
|
line: pterodactyl:200000:65536
|
|
|