abraunegg-onedrive/contrib/init.d/onedrive_service.sh
abraunegg f111eab71a
Update onedrive_service.sh
* Enable logging for init.d service - as without this - there is zero information about what the service is actually doing
2019-07-23 17:44:14 +10:00

6 lines
188 B
Bash

#!/bin/bash
# This script is to assist in starting the onedrive client when using init.d
APP_OPTIONS="--monitor --verbose --enable-logging"
onedrive $APP_OPTIONS > /dev/null 2>&1 &
exit 0