#!/bin/sh
#
# Create test devices for dmeventd
#

trap "rm -f /tmp/tmp.$$" 0 1 2 3 15

echo "0 1024 zero" > /tmp/tmp.$$
dmsetup create test /tmp/tmp.$$
dmsetup create test1 /tmp/tmp.$$

kill -15 $$
