summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrmsyn <rmsynchls@gmail.com>2023-04-18 02:13:21 +0000
committerWez Furlong <wez@wezfurlong.org>2023-04-18 21:51:04 -0700
commit65f5db37957e034ba77b134621e352b006bcd5d1 (patch)
tree0f1f46105f364056500c9522f835bdf02e2b79f7
parentd64c90e6fa8631bc519db3c8aceb5ad27f024e00 (diff)
service: change to system directories
Change directories in the example systemd service file to system directories.
-rw-r--r--evremap.service2
1 files changed, 1 insertions, 1 deletions
diff --git a/evremap.service b/evremap.service
index cc38bb7..0c49471 100644
--- a/evremap.service
+++ b/evremap.service
@@ -3,7 +3,7 @@ WorkingDirectory=/
# For reasons I don't care to troubleshoot, Fedora 31 won't let me start this
# unless I use `bash -c` around it. Putting the command line in directly
# yields a 203 permission denied error with no logs about what it didn't like.
-ExecStart=bash -c "/home/wez/github/evremap/target/release/evremap remap /home/wez/github/evremap/pixelbookgo.toml"
+ExecStart=bash -c "/usr/bin/evremap remap /etc/evremap.toml"
Restart=always
[Install]