quiet master
authorDobrica Pavlinusic <dpavlin@rot13.org>
Sun, 28 Oct 2018 11:55:08 +0000 (12:55 +0100)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Sun, 28 Oct 2018 11:55:08 +0000 (12:55 +0100)
mqtt-tele-pgsql.sh

index e276ef6..16ae79a 100755 (executable)
@@ -1,7 +1,7 @@
-#!/bin/sh -x
+#!/bin/sh -e
 
 mosquitto_sub -h 10.13.37.5 -t 'tele/#' -v | while read topic json ; do
        echo $json > /dev/shm/tele.json
 #      psql -c "copy tele (json) from '/dev/shm/tele.json'" rot13
-       psql -c "insert into tele (topic,json) values ('$topic','$json');" rot13
+       psql --quiet -c "insert into tele (topic,json) values ('$topic','$json');" rot13
 done