Massive Migration! #292

This commit is contained in:
root
2018-01-01 19:00:45 -05:00
commit 1baa895f41
241 changed files with 28076 additions and 0 deletions

16
shell_scripts/gitupdate.sh Executable file
View File

@@ -0,0 +1,16 @@
## These scripts are run from /home/pi
#!/bin/bash
cd /home/hass/.homeassistant
source /srv/hass/hass_venv/bin/activate
hass --script check_config
git add .
git status
echo -n "Enter the Description for the Change: " [Minor Update]
read CHANGE_MSG
git commit -m "${CHANGE_MSG}"
git push origin master
exit