Skip to content

Commit b71792e

Browse files
committed
Fix deployment instructions in release notes
- Correct binary path: /usr/bin/ (not /usr/local/bin/) - Fix config deployment: single file /etc/ev-obd-feeder.yaml (not directory) - Update chmod paths to match deployment locations - Remove unnecessary auto-start command
1 parent d311cb4 commit b71792e

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -93,20 +93,17 @@ jobs:
9393
cd ev-obd-feeder
9494
9595
# Deploy to device (example: Radxa at 10.0.0.1)
96-
scp -O ev-obd-feeder [email protected]:/usr/local/bin/
97-
scp -O -r configs [email protected]:/etc/ev-obd-feeder
96+
scp -O ev-obd-feeder [email protected]:/usr/bin/
97+
scp -O configs/ioniq5n.yaml [email protected]:/etc/ev-obd-feeder.yaml
9898
scp -O init.d/S99ev-obd-feeder [email protected]:/etc/init.d/
9999
100100
# Set permissions and start service
101-
ssh [email protected] "chmod +x /usr/local/bin/ev-obd-feeder /etc/init.d/S99ev-obd-feeder"
101+
ssh [email protected] "chmod +x /usr/bin/ev-obd-feeder /etc/init.d/S99ev-obd-feeder"
102102
ssh [email protected] "/etc/init.d/S99ev-obd-feeder start"
103-
104-
# To enable auto-start on boot
105-
ssh [email protected] "ln -sf /etc/init.d/S99ev-obd-feeder /etc/rc.d/"
106103
```
107104
108105
### Configuration:
109-
- Edit `/etc/ev-obd-feeder/ioniq5n.yaml` on the target device to adjust settings
106+
- Edit `/etc/ev-obd-feeder.yaml` on the target device to adjust settings
110107
- Default configuration works for Hyundai Ioniq 5N with OBDLink EX on /dev/ttyUSB0
111108
- Set `mock: true` in config to test without actual OBD hardware
112109

0 commit comments

Comments
 (0)