forked from pool/boinc-client
Jan Engelhardt
9e2b13005a
OBS-URL: https://build.opensuse.org/package/show/network/boinc-client?expand=0&rev=52
11 lines
221 B
Bash
11 lines
221 B
Bash
#!/bin/sh
|
|
#
|
|
# boinc-manager - a wrapper to start BOINC Client GUI
|
|
#
|
|
# Checking for gui_rpc_auth.cfg
|
|
if ! test -f ~/gui_rpc_auth.cfg ; then
|
|
ln -s @boinc_dir@/gui_rpc_auth.cfg ~/.
|
|
fi
|
|
|
|
exec boinc-gui -d @boinc_dir@ "$@"
|