8 lines
310 B
Plaintext
8 lines
310 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
JAVA_SYS_PROPS="-Djava.util.logging.config.file=/config/logging.properties -Dconfig.file=/config/jicofo.conf"
|
|
DAEMON=/usr/share/jicofo/jicofo.sh
|
|
DAEMON_DIR=/usr/share/jicofo/
|
|
|
|
exec s6-setuidgid jicofo /bin/bash -c "cd $DAEMON_DIR; JAVA_SYS_PROPS=\"$JAVA_SYS_PROPS\" exec $DAEMON"
|