forked from pool/boinc-client
11 lines
213 B
Plaintext
11 lines
213 B
Plaintext
|
#!/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@
|