NetworkBrowser Automount erzwingt udp

  • Es ist nicht möglich ein NFS-Share über den Automount des Network-Browsers als tcp zu mounten. Trägt man nämlich als mount option "tcp" ein, fügt AutoMount.py wieder ein udp hinzu. In der fstab stehen dann sowohl tcp als auch udp.


    Da ist nämlich ein "not" zuviel in sanitizeOptions():

    Code
    if not 'tcp' not in options and 'udp' not in options:
        options.append('udp')

    Habe ich bei mir lokal behoben, bitte auch bei Gelegenheit auf dem Feed übernehmen.