mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
18 lines
360 B
Nix
18 lines
360 B
Nix
{pkgs, ...}:
|
|
pkgs.writers.writeDashBin "untilport" ''
|
|
set -euf
|
|
|
|
usage() {
|
|
echo 'untiport $target $port'
|
|
echo 'Sleeps until the destinated port is reachable.'
|
|
echo 'ex: untilport google.de 80 && echo "google is now reachable"'
|
|
}
|
|
|
|
|
|
if [ $# -ne 2 ]; then
|
|
usage
|
|
else
|
|
until ${pkgs.libressl.nc}/bin/nc -z "$@"; do sleep 1; done
|
|
fi
|
|
''
|