blob: 216d0cb6cce9e3790036b0e16f7648bbe9898d80 (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
set -e
scp plot.py read_sensors.py water_the_plant create_backup make_photo index.html history.html *.png robert@waterpi:
ssh robert@waterpi -C '\
sudo cp index.html history.html *.png /var/www/html; \
sudo chown www-data:www-data /var/www/html/*.html /var/www/html/*.png; \
sudo cp plot.py read_sensors.py create_backup make_photo read_temperature.py water_the_plant /usr/local/bin'
|