You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
297 B
8 lines
297 B
#!/bin/sh
|
|
|
|
# Include the variables that store the Docker service names
|
|
# shellcheck disable=SC1091
|
|
. /etc/opt/service_names
|
|
|
|
( netstat -t | grep ESTABLISHED | awk '{print $5}' | grep "$MPI_WORKER_SERVICE_NAME" | cut -d: -f1 \
|
|
& getent hosts "$MPI_MASTER_SERVICE_NAME" | cut -d' ' -f1 ) | sort -u
|
|
|