#!/bin/sh
#
# Mount script used by amd to mount any type of floppy.
#
# Copyright (c) 1998, Massimo Dal Zotto <dz@cs.unitn.it>
#
# This file is distributed under the GNU General Public License
# either version 2, or (at your option) any later version.

/bin/mount -t umsdos $* 2>/dev/null || \
/bin/mount -t minix  $* 2>/dev/null || \
/bin/mount -t ext2   $* 2>/dev/null || \
/bin/mount -t msdos  $* 2>/dev/null || \
exit 1
