kodi-waitonnetwork.service 554 B

12345678910111213141516171819
  1. [Unit]
  2. Description=Wait on network
  3. Requisite=connman.service
  4. After=connman.service
  5. Before=network-online.target
  6. DefaultDependencies=no
  7. Conflicts=shutdown.target
  8. ConditionPathExists=/storage/.cache/libreelec/network_wait
  9. [Service]
  10. Type=oneshot
  11. EnvironmentFile=/storage/.cache/libreelec/network_wait
  12. ExecStartPre=/bin/sh -c 'echo "waiting on Network to come online ... (max. $WAIT_NETWORK_TIME sec.)"'
  13. ExecStart=/usr/sbin/connmand-wait-online --timeout=${WAIT_NETWORK_TIME}
  14. StandardOutput=tty
  15. RemainAfterExit=yes
  16. [Install]
  17. WantedBy=network-online.target