mirror of
https://github.com/weewx/weewx.git
synced 2026-04-19 00:56:54 -04:00
10 lines
283 B
Bash
Executable File
10 lines
283 B
Bash
Executable File
#!/bin/sh
|
|
app=wee_device
|
|
|
|
# Get the weewx location and interpreter. Default to something sane, but
|
|
# look for overrides from the system defaults.
|
|
WEEWX_BINDIR=/home/weewx/bin
|
|
WEEWX_PYTHON=python3
|
|
[ -r /etc/default/weewx ] && . /etc/default/weewx
|
|
$WEEWX_PYTHON $WEEWX_BINDIR/$app $*
|