forked from pool/boinc-client
5024a320b2
fix for bnc#689499 OBS-URL: https://build.opensuse.org/request/show/102548 OBS-URL: https://build.opensuse.org/package/show/network/boinc-client?expand=0&rev=17
11 lines
213 B
Bash
11 lines
213 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 -e @bindir@
|