#!/bin/sh -e

# which others support -q?
if [ $fstype = "ext2" -o $fstype = "ext3" ]; then
    options="-q"
fi

mkfs.$fstype $options /dev/ubd/1
