23 lines
243 B
Bash
Executable File
23 lines
243 B
Bash
Executable File
#!/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
|