I've tried using CIFS and NFS but neither working. Here is the log: http://ix.io/2GnH
For CIFS to mount onto directory "NAS"
[Unit]
Description=cifs mount script
Requires=network-online.service
After=network-online.service
Before=kodi.service
[Mount]
What=//192.168.1.14/Volume1
Where=/storage/nas
Options=username=admin,password=XXXXXXX.,rw,vers=1.0
Type=cifs
[Install]
WantedBy=multi-user.target
Enabled using PuTTY "systemctl enable storage-nas.mount"
____________________________________
For NFS (onto a different directory "NSA")
[Unit]
Description=nfs mount script onto NSA
Requires=network-online.service
After=network-online.service
Before=kodi.service
[Mount]
What=//192.168.1.14/Volume1
Where=/storage/nsa
Options=
Type=nfs
[Install]WantedBy=multi-user.target
Enabled using PuTTY "systemctl enable storage-nsa.mount"
I don't really mind which is used. The NAS can only run Samba v1.0 which I guess would make the NFS method preferable?. The NAS is fixed IP address.
Any help much appreciated.