autofs-5.0.6 - ignore duplicate exports in auto.net From: Paul Smith --- CHANGELOG | 1 + samples/auto.net | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) --- autofs-5.0.6.orig/CHANGELOG +++ autofs-5.0.6/CHANGELOG @@ -23,6 +23,7 @@ - fix rpc build error. - add sss lookup module. - teach automount about sss source. +- ignore duplicate exports in auto.net. 28/06/2011 autofs-5.0.6 ----------------------- --- autofs-5.0.6.orig/samples/auto.net +++ autofs-5.0.6/samples/auto.net @@ -35,7 +35,7 @@ done # Newer distributions get this right SHOWMOUNT="$SMNT --no-headers -e $key" -$SHOWMOUNT | LC_ALL=C sort -k 1 | \ +$SHOWMOUNT | LC_ALL=C cut -d' ' -f1 | LC_ALL=C sort -u | \ awk -v key="$key" -v opts="$opts" -- ' BEGIN { ORS=""; first=1 } { if (first) { print opts; first=0 }; print " \\\n\t" $1, key ":" $1 }