Projet de remplacement du "RPiPasserelle" d'Otec.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011 |
- #!/bin/sh
-
- [ ! -d /opt/pyheatpump/ ] && echo "Missing /opt/pyheatpump/" && exit 1;
-
- [ ! -d /var/run/pyheatpump ] && mkdir /var/run/pyheatpump;
-
- sqlite3 -init /opt/pyheatpump/pyheatpump.sql /var/run/pyheatpump/pyheatpump.sqlite3 \
- || (echo "Failed to initialize database" && exit 1);
-
- cp /opt/pyheatpump/pyheatpump.ini /var/run/pyheatpump/pyheatpump.ini \
- || (echo "Failed to initialized configuration file" && exit 1);
|