mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-23 08:31:05 +00:00
13 lines
171 B
Bash
13 lines
171 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Mock responses to rascsi-web
|
|
case $1 in
|
|
"show")
|
|
echo "rascsi_bridge 8000.dca632b05dd1 no eth0"
|
|
;;
|
|
|
|
**)
|
|
echo "default"
|
|
;;
|
|
esac
|