RASCSI/python/web/mock/bin/systemctl

13 lines
142 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
# Mock responses to piscsi-web
case $1 in
is-active)
echo "is-active"
;;
**)
echo "default"
;;
esac