mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 13:15:42 +12:00
11 lines
262 B
Bash
Executable file
11 lines
262 B
Bash
Executable file
#!/bin/sh
|
|
|
|
useradd -r horseisle
|
|
mkdir -p /etc/hisp
|
|
mkdir -p /var/log/hisp
|
|
chown -R horseisle:horseisle /etc/hisp
|
|
chown -R horseisle:horseisle /var/log/hisp
|
|
systemctl enable HISP.service
|
|
systemctl start HISP
|
|
|
|
echo "Make sure to edit /etc/hisp/server.properties!"
|