aboutsummaryrefslogtreecommitdiff
path: root/data/dispatcher-connection/99-log-event
blob: 31188efa8e2fff5f399764f6fb0e81297a381a18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 $?