I have an LED strip connected to my Raspberry Pi Zero W, and I would like to run a Python script to turn on the LED’s as soon as possible after boot.
In my systemd unit file, I’m using After=multi-user.target, but I’m wondering if there is an earlier target that I can be using.
systemd. – Milliways Jul 25 '20 at 23:41After=network.targetandWantedBy=multi-user.targetand let systemd work out when to start my service. – Dougie Jul 27 '20 at 16:35