Here you are (password replaced by *****):
Code
LibreELEC:~ # cat /storage/.config/system.d/storage-ProLiant.mount
[Unit]
Description=cifs mount script
Requires=network-online.service
After=network-online.service
Before=kodi.service
[Mount]
What=//192.168.0.10/Media/PVR
Where=/storage/ProLiant
Options=username=Michael,password=*****,rw,vers2.1
Type=cifs
[Install]
WantedBy=multi-user.target
LibreELEC:~ #
Display More
I tried manual mounting (password replaced by *****):
Code
LibreELEC:~ # mount -t cifs -o username=Michael,password=*****,vers=2.1 //192.168.0.10/Media/PVR /storage/ProLiant
This works as expected. I can see all my server files in /storage/ProLiant.
Any idea?
UPDATE : I found it
In my mount definition file (see above) the "=" was missing: vers2.1 needs to be vers=2.1
Changed it and the share is mounted.