a CIFS network location is mounted via
/etc/fstabto/mnt/on boot-up.
No, it is not. Get this right, and the rest falls into place naturally.
The mount is handled by a (generated) systemd mount unit that will be named something like mnt-wibble.mount. You can see its actual name in the output of systemctl list-units --type=mountthe follwoing command. You:
systemctl list-units --type=mount
You can look at it in detail just like any other unit with systemctl status.:
systemctl status
Very simply, then: you have to order your unit to be started after that mount unit is started.
After=network.target vpn-launch.service mnt-wibble.mountAfter=network.target vpn-launch.service mnt-wibble.mount