23 lines
243 B
Plaintext
23 lines
243 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (c) 2007, FUJITSU Limited
|
||
|
# Based on the block scripts code.
|
||
|
#
|
||
|
|
||
|
dir=$(dirname "$0")
|
||
|
. "$dir/xen-hotplug-common.sh"
|
||
|
|
||
|
findCommand "$@"
|
||
|
|
||
|
case "$command" in
|
||
|
add)
|
||
|
success
|
||
|
;;
|
||
|
remove)
|
||
|
# TODO
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
exit 0
|