Fix systemd service starting too early
This commit is contained in:
parent
a84f90c925
commit
a69e0dbdd8
@ -9,16 +9,19 @@
|
|||||||
|
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Start Python GUI for IO-control and monitoring after startup
|
Description=Start Python GUI for IO-control and monitoring after startup
|
||||||
|
# note: when using After=graphical.target: it only starts after successful network connection...
|
||||||
After=display-manager.service
|
After=display-manager.service
|
||||||
Wants=display-manager.service
|
Wants=display-manager.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Environment=DISPLAY=:0
|
Environment=DISPLAY=:0
|
||||||
ExecStart=/usr/bin/python3 /home/pi/git/rpi-interface-board/rpi-scripts/gui/main.py
|
|
||||||
|
# note: some delay is needed for DISPLAY :0 to be available
|
||||||
|
ExecStart=/bin/bash -c "/bin/sleep 6 && /usr/bin/python3 /home/pi/git/rpi-interface-board/rpi-scripts/gui/main.py"
|
||||||
WorkingDirectory=/home/pi/git/rpi-interface-board/rpi-scripts/gui
|
WorkingDirectory=/home/pi/git/rpi-interface-board/rpi-scripts/gui
|
||||||
User=pi
|
User=pi
|
||||||
Group=pi
|
Group=pi
|
||||||
Restart=always
|
Restart=no
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=default.target
|
WantedBy=default.target
|
||||||
|
Loading…
x
Reference in New Issue
Block a user