diff options
-rw-r--r-- | comments/comments.service | 2 | ||||
-rwxr-xr-x | deploy.sh | 2 |
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 @@ -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 |