mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
12 lines
347 B
Bash
Executable File
12 lines
347 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Originally from:
|
|
# https://github.com/BOINC/boinc-client-docker/blob/master/bin/start-boinc.sh
|
|
|
|
# Configure the GUI RPC
|
|
echo $BOINC_GUI_RPC_PASSWORD > /var/lib/boinc/gui_rpc_auth.cfg
|
|
echo $BOINC_REMOTE_HOST > /var/lib/boinc/remote_hosts.cfg
|
|
|
|
# Run BOINC. Full path needs for GPU support.
|
|
exec /usr/bin/boinc $BOINC_CMD_LINE_OPTIONS
|