data: add example connection dispatcher

Just a minimal example that prints the events in syslog
This commit is contained in:
Aleksander Morgado
2022-03-24 13:10:09 +01:00
parent 99232154b3
commit 7960b365d5
6 changed files with 71 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
#!/bin/sh
# SPDX-License-Identifier: CC0-1.0
# 2022 Aleksander Morgado <aleksander@aleksander.es>
#
# Example connection info dispatcher script
#
# require program name and at least 4 arguments
[ $# -lt 4 ] && exit 1
MODEM_PATH="$1"
BEARER_PATH="$2"
INTERFACE="$3"
STATE="$4"
MODEM_ID=$(basename ${MODEM_PATH})
BEARER_ID=$(basename ${BEARER_PATH})
# report in syslog the event
logger -t "connection-dispatch" "modem${MODEM_ID}: bearer${BEARER_ID}: interface ${INTERFACE} ${STATE}"
exit $?