blob: 5557660155b37c8c6dbac39b1a577ca8e48e6e78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/bash
# (C) 2018 Jan-Simon Möller, dl9pf@gmx.de, jsmoeller@linuxfoundation.org
# License: Apache License 2.0
#set -x
set -e
if [ $1 ] ; then
# The device is always 0009 -> 9 . Only change is the i2c IF .
LED=`echo $1 | sed -e "s#0009#9#g"`
if [ $? -eq 0 ] ; then
echo "$LED"
sed -e "s#@DEVICE@#$LED#" /etc/hvac.json.in > /etc/hvac.json
else
echo "Invalid argument"
exit 1
fi
else
echo "Need argument"
exit 1
fi
|