16 lines
470 B
Plaintext
16 lines
470 B
Plaintext
|
#!/sbin/openrc-run
|
||
|
|
||
|
name=app-market-server
|
||
|
description="3rd party WebDesk App Market server"
|
||
|
|
||
|
command="bash -c cd ~/webdesk-app-market-server && ./app-market-server" # if you have put the eprintclone binary somewhere else change this line
|
||
|
# Don't forget to change the value here!
|
||
|
# There is no reason to run this program as root, just use your username
|
||
|
command_user="userexample" # change this to your username
|
||
|
|
||
|
pidfile="/run/${RC_SVCNAME}.pid"
|
||
|
|
||
|
depend() {
|
||
|
need net
|
||
|
}
|