Skip to main content

Call scripts on network changes

Project description

# Description

Run scripts on network state changes

# Install

pip install connman-dispatcher [--user]


# Usage

$ connman-dispatcher -h
usage: connman-dispatcher [-h] -p PATH

Scripts are run from folders setted in -p argument.

One can set more than one folder.

When network state changes, each script is executed with either `up` or `down`
argument, depening on the current network state.

For example, if connman-dispatcher was run like this:

connman-dispatcher -p /etc/connman-dispatcher

And we have some scripts in bash in this folder, something like:

```bash
up() {
# handle up state
}

down() {
# handle down state
}

state="$1"

case $state in
up)
up
;;
down)
down
;;
esac
```

When network state changes from `down` to `up`, each script in `/etc/connman-dispatcher`
will be executed with `up` argument, like this:

/etc/connman-dispatcher/10_handle_network_state_change.sh up
/etc/connman-dispatcher/some_other_executable up


Scripts, as well as script folders are sorted by name.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

connman-dispatcher-0.0.8.tar.gz (3.4 kB view details)

Uploaded Source

File details

Details for the file connman-dispatcher-0.0.8.tar.gz.

File metadata

File hashes

Hashes for connman-dispatcher-0.0.8.tar.gz
Algorithm Hash digest
SHA256 41e3b09564477d0851ab14bb41f7d14f420742b12ebdc262aeeb6eae5c8a745f
MD5 24e8114628dcdba6a47360a52e0c9828
BLAKE2b-256 8050a31a71e5c6c7a60b376e283b4a8b499b7e703bc1a18476be3d656fd8fc4c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page