Rclone: mount remote on startup

I have installed rclone succesfully from the wdpksrc Bintray respository. I did set up my remote configs in /shares/Volume_1/Nas_Prog/rclone/rclone.config via SSH (Web UI didn’t work for me). Mounting works fine if done on the console prompt via SSH. However, if I want to mount on startup of the device after a reboot this very same command that I have put as the last command into /shares/Volume_1/Nas_Prog/rclone/start.sh does not work:

rclone mount gdrive: /shares/Volume_1/usershare/gdrive --daemon --allow-other --uid 500 --gid 1000 --config ${CONFIG} --log-file=$(pwd)/rclone.log

There is no errors showing up in my log file. I have also tried init.sh. What could be the problem? Thanks

The last command in the rclone start to run the service is a blocking call, so it doesn’t execute the commands that come after.
Try putting the mount command right before or add & after the blocking call.

Unfortunately that did not work. Nothing is mounted after a reboot. Executing the very same command manually via ssh successfully creates the mount. What could be the problem?