aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--comments/comments.service2
-rwxr-xr-xdeploy.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/comments/comments.service b/comments/comments.service
index b511915..7d8f0e5 100644
--- a/comments/comments.service
+++ b/comments/comments.service
@@ -6,7 +6,7 @@ After=postgres.service
User=comments
ExecStart=/usr/local/bin/comments
Restart=on-failure
-Environment="DATABASE_URL=postgres:///comments"
+EnvironmentFile=/etc/sysconfig/comments
[Install]
WantedBy=multi-user.target
diff --git a/deploy.sh b/deploy.sh
index 04270e8..4c32b5b 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -22,7 +22,7 @@ rsync -rz public/* root@rpi3:/var/www/mfashby.net
# Copy comments app and reboot
ssh root@rpi3 -C systemctl stop comments
rsync comments/target/aarch64-unknown-linux-gnu/release/comments root@rpi3:/usr/local/bin/comments
-#rsync comments/comments.service root@rpi3:/etc/systemd/system/comments.service
+rsync comments/comments.service root@rpi3:/etc/systemd/system/comments.service
ssh root@rpi3 -C systemctl daemon-reload
ssh root@rpi3 -C systemctl restart comments