#!/bin/sh
#
# Intended for use with /etc/auto_master containing
# /mtp		-simple-mtpfs	-allow_other
#

out=$(/usr/local/bin/simple-mtpfs --list-devices)
[ $? -eq 0 ] || exit 1

if [ $# -eq 0 ]; then
	echo "$out" | sed 's/[^:]*: //' | sort -u
	exit 0
fi

devno=$(echo "$out" | (fgrep "$1" || echo 0) | sed 's/:.*//')
[ $devno -gt 0 ] || exit 1

echo "/ -fstype=none,--device=$devno,mountprog=/usr/local/bin/simple-mtpfs :none"
