-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meta-lxatac-software: python3-labgrid: use devel version from master
This marks a breaking change compared to the previous release version, as master now uses grpc instead of crossbar to communicate between the client, coordinator and exporters. This means all of these components need to be updated to the grpc-based versions at the same time. Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
- Loading branch information
Showing
2 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
recipes-devtools/python/python3-labgrid-24.0+git/labgrid-exporter.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[Unit] | ||
Description=Labgrid Exporter | ||
After=network-online.target | ||
Wants=network-online.target | ||
|
||
[Service] | ||
Environment="PYTHONUNBUFFERED=1" | ||
EnvironmentFile=/etc/labgrid/environment | ||
ExecStart=/usr/bin/labgrid-exporter --coordinator ${LABGRID_COORDINATOR_IP}:${LABGRID_COORDINATOR_PORT} /etc/labgrid/configuration.yaml | ||
Restart=on-failure | ||
RestartForceExitStatus=100 | ||
RestartSec=30 | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters