Skip to content

Commit

Permalink
fix: Fix systemd service installation (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nativu5 authored Nov 5, 2024
1 parent b584613 commit ef40312
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ install:
@echo " - Installing binaries to /usr/local/bin/"
@mkdir -p /usr/local/bin
@cp $(BIN_DIR)/* /usr/local/bin
@echo " - Installing systemd service files to /etc/systemd/system/"
@mkdir -p /etc/systemd/system
@cp etc/*.service /etc/systemd/system
@echo " - Installing systemd service files to /usr/lib/systemd/system"
@mkdir -p /usr/lib/systemd/system
@cp etc/*.service /usr/lib/systemd/system
@echo " - You may need to reload systemd daemons: 'systemctl daemon-reload'"
@echo " - Done."
2 changes: 1 addition & 1 deletion etc/cfored.service
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Unit]
Description=CraneSched-Cfored
Description=CraneSched - Cfored
After=network.target nss-lookup.target

[Service]
Expand Down
2 changes: 1 addition & 1 deletion etc/cplugind.service
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Unit]
Description=CraneSched-Cplugind
Description=CraneSched - Cfored
After=network.target nss-lookup.target

[Service]
Expand Down

0 comments on commit ef40312

Please sign in to comment.