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