File: vscsi

package info (click to toggle)
xen-common 4.0.0-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 876 kB
  • ctags: 362
  • sloc: sh: 3,061; makefile: 403; perl: 186; python: 174; xml: 2
file content (22 lines) | stat: -rw-r--r-- 243 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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