mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-25 01:44:43 +01:00
12 lines
309 B
Bash
12 lines
309 B
Bash
|
#!/bin/sh -eu
|
||
|
|
||
|
if [ "$ZREPL_HOOKTYPE" = "pre_testing" ]; then
|
||
|
>&2 echo "TEST ERROR $ZREPL_HOOKTYPE $ZREPL_FS@$ZREPL_SNAPNAME"
|
||
|
exit 1
|
||
|
elif [ "$ZREPL_HOOKTYPE" = "post_testing" ]; then
|
||
|
echo "TEST $ZREPL_HOOKTYPE $ZREPL_FS@$ZREPL_SNAPNAME"
|
||
|
else
|
||
|
printf "Unknown hook type: %s" "$ZREPL_HOOKTYPE"
|
||
|
exit 255
|
||
|
fi
|