cleaned bin files

This commit is contained in:
root 2015-10-16 17:37:16 +02:00
parent b43f8b734e
commit 01f1663066
2 changed files with 5 additions and 7 deletions

View File

@ -13,11 +13,16 @@ fi
case "$1" in
list) curl $BASE/boards/
echo "";
;;
create-board) curl -H "Content-Type: application/json" -X POST $BASE/boards/ -d '{"code":"'"$2"'"}'
echo "";
;;
delete-board) curl -X DELETE $BASE/boards/$2
echo "";
;;
show) curl $BASE/boards/$2
echo "";
;;
*) echo "list - create-board - delete-board - show"
esac

View File

@ -38,12 +38,5 @@ if __name__ == '__main__':
launcher = service.launch(mgr)
launcher.wait()
'''
try:
Conductor()
pass
except RuntimeError, e:
sys.exit("ERROR: %s" % e)
'''