6 lines
158 B
Bash
6 lines
158 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S -g 1337 pterodactyl 2>/dev/null
|
|
adduser -S -h /home/pterodactyl -D -u 1337 -s /bin/bash -G pterodactyl pterodactyl 2>/dev/null
|
|
|
|
exit 0
|