#!/bin/bash
# wrapper script that redirects stdout/stderr to correct log paths

# we allow multiple clients so that the client does not think there is another instance running (namely this wrapper)
/usr/bin/boinc_client --allow_multiple_clients $@ >> /var/log/boinc.log 2>> /var/log/boincerr.log 
