1#!/bin/sh
2#
3# Copyright (c) 2007, FUJITSU Limited
4# Based on the block scripts code.
5#
6
7dir=$(dirname "$0")
8. "$dir/xen-hotplug-common.sh"
9
10findCommand "$@"
11
12case "$command" in
13	add)
14		success
15		;;
16	remove)
17		# TODO
18		exit 0
19		;;
20esac
21
22exit 0
23