From 5887eb98161a060bdd03d7c1ba4529bd17898c00 Mon Sep 17 00:00:00 2001 From: sparky8512 <76499194+sparky8512@users.noreply.github.com> Date: Fri, 11 Nov 2022 13:13:41 -0800 Subject: [PATCH] Remove incorrect env option Per discussion on issue #68, setting INFLUXDB_SSL to "false" is not useful here. This was probably copied over from the MQTT example service conf file, where it is supported (although essentially ignored). --- systemd/starlink-influx2.service | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systemd/starlink-influx2.service b/systemd/starlink-influx2.service index 76961e2..52ee1df 100644 --- a/systemd/starlink-influx2.service +++ b/systemd/starlink-influx2.service @@ -5,8 +5,8 @@ After=network.target [Service] Type=simple WorkingDirectory=/opt/starlink-grpc-tools/ -Environment=INFLUXDB_URL=http://localhost:8086 INFLUXDB_TOKEN= INFLUXDB_Bucket= INFLUXDB_ORG= INFLUXDB_SSL=false +Environment=INFLUXDB_URL=http://localhost:8086 INFLUXDB_TOKEN= INFLUXDB_Bucket= INFLUXDB_ORG= ExecStart=/opt/starlink-grpc-tools/venv/bin/python3 dish_grpc_influx2.py -t 10 status alert_detail [Install] -WantedBy=multi-user.target \ No newline at end of file +WantedBy=multi-user.target