Created
November 18, 2022 11:14
-
-
Save 7wells/f32fa8f703cdab46b04c32e693bbae22 to your computer and use it in GitHub Desktop.
FHEM - How to ensure that ser2net starts not too early
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
# How to ensure that ser2net starts not too early (ie. not before the device is recognized) | |
# | |
sudo nano /lib/systemd/system/ser2net.service | |
# Add the following 2 lines in the [Unit] section: | |
After=network-online.target | |
Wants=network-online.target | |
# See also there: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1000622 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment