How do I mount multiple NFS shares through system.d?

  • Hi all,

    due to stuttering streams from my QNAP TS-231 to pi3 with Libreelec, I decided to mount the share via system.d - works like a charm and now has stable, high throughput.

    My entered data looks like this:

    [Unit] 

    Description=test nfs mount script 

    Requires=network-online.service 

    After=network-online.service 

    Before=kodi.service 



    [Mount] 

    What=192.168.1.39:/Multimedia 

    Where=/storage/nfsmounts 

    Options= 

    Type=nfs 



    [Install] 

    WantedBy=multi-user.target

    I cannot figure out (or I am doo dumb to find the information) how to add another share from a different NAS in my network, so it mounts both at system boot.

    Do I put that information via nano in the same file or how is that done?