Skip to content

Instantly share code, notes, and snippets.

@7wells
Created November 18, 2022 11:14
Show Gist options
  • Save 7wells/f32fa8f703cdab46b04c32e693bbae22 to your computer and use it in GitHub Desktop.
Save 7wells/f32fa8f703cdab46b04c32e693bbae22 to your computer and use it in GitHub Desktop.
FHEM - How to ensure that ser2net starts not too early
# 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