Skip to content

Commit

Permalink
Fix path to pigpiod (#684)
Browse files Browse the repository at this point in the history
Former-commit-id: 1e6d0dd
  • Loading branch information
kizniche committed Sep 8, 2019
1 parent 6cdd159 commit 6b3c39c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ This release changes how user-created Python code is executed. This affects Pyth
- Fix storing of SHT31 Smart Gadget erroneous measurements
- Prevent Pyro4 TimeoutErrors from stopping PID and Conditional controllers
- Improve Controller reliability/stability
- Fix path to pigpiod ([#684](https://github.com/kizniche/mycodo/issues/684))

### Features

Expand Down
2 changes: 1 addition & 1 deletion install/pigpiod_high.service
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ After=syslog.target

[Service]
Type=forking
ExecStart=/usr/local/bin/pigpiod -s 5
ExecStart=/usr/bin/pigpiod -s 5
ExecStop=/usr/bin/killall pigpiod
ExecReload=/bin/kill -HUP $MAINPID
Restart=always
Expand Down
2 changes: 1 addition & 1 deletion install/pigpiod_low.service
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ After=syslog.target

[Service]
Type=forking
ExecStart=/usr/local/bin/pigpiod -s 1
ExecStart=/usr/bin/pigpiod -s 1
ExecStop=/usr/bin/killall pigpiod
ExecReload=/bin/kill -HUP $MAINPID
Restart=always
Expand Down

0 comments on commit 6b3c39c

Please sign in to comment.