Skip to content

Instantly share code, notes, and snippets.

@bsdayo
Created November 12, 2024 13:09
Show Gist options
  • Save bsdayo/13911a954ab43b5c751873192727efd8 to your computer and use it in GitHub Desktop.
Save bsdayo/13911a954ab43b5c751873192727efd8 to your computer and use it in GitHub Desktop.
Systemd service to check Internet access
[Unit]
Description = Check Internet access
After = network-online.target
[Service]
Type = oneshot
ExecStart = /bin/bash -c "until ping -c 1 www.baidu.com; do sleep 1; done;"
[Install]
WantedBy = network-online.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment