1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
#!/bin/sh
# A basic utility script used for debugging notification call-out events
# in mdevctl. Output can be observed via system logs.
#stdin | -t type -e event -a action -s state -u uuid -p parent
shift
type=$1
shift 2
event=$1
shift 2
action=$1
shift 2
state=$1
shift 2
uuid=$1
shift 2
parent=$1
json=$(cat)
print_supported_version() {
case "$1" in
11111111-1111-0000-0000-000000000000)
# full version 2 and RC=0
echo "{\"supports\":{"
echo "\"version\":2,"
echo "\"actions\":[\"start\",\"stop\",\"define\",\"undefine\",\"modify\",\"attributes\",\"capabilities\"],"
echo "\"events\":[\"pre\",\"post\",\"notify\",\"get\"]"
echo "}}"
exit 0
;;
11111111-1111-1111-0000-000000000000)
# valid version 3 and RC=0
echo "{\"supports\":{"
echo "\"version\":3,"
echo "\"actions\":[\"start\",\"stop\",\"define\",\"undefine\",\"modify\",\"attributes\",\"capabilities\"],"
echo "\"events\":[\"pre\",\"post\",\"notify\",\"get\",\"live\"]"
echo "}}"
exit 0
;;
*)
exit 2
;;
esac
}
case "$event" in
get)
case "$action" in
capabilities)
print_supported_version $uuid
;;
*)
exit 0
;;
esac
;;
live)
exit 1
;;
*)
exit 0
;;
esac
|