2018-11-07 21:26:32 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
endpoint="ws://127.0.0.1:8765"
|
|
|
|
endpoint="ws://127.0.0.1:5678"
|
|
|
|
appkey="appkey"
|
|
|
|
channel="foo"
|
|
|
|
rolename="a_role"
|
|
|
|
rolesecret="a_secret"
|
2018-11-10 03:23:49 +01:00
|
|
|
filename=${FILENAME:=events.jsonl}
|
2018-11-07 21:26:32 +01:00
|
|
|
|
2018-12-23 23:14:38 +01:00
|
|
|
build/cobra_publisher $endpoint $appkey $channel $rolename $rolesecret $filename
|