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.

pre-exec.sh 427B

1234567891011
  1. #!/bin/sh
  2. [ ! -d /opt/pyheatpump/ ] && echo "Missing /opt/pyheatpump/" && exit 1;
  3. [ ! -d /var/run/pyheatpump ] && mkdir /var/run/pyheatpump;
  4. sqlite3 -init /opt/pyheatpump/pyheatpump.sql /var/run/pyheatpump/pyheatpump.sqlite3 \
  5. || (echo "Failed to initialize database" && exit 1);
  6. cp /opt/pyheatpump/pyheatpump.ini /var/run/pyheatpump/pyheatpump.ini \
  7. || (echo "Failed to initialized configuration file" && exit 1);