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
314 B
8 lines
314 B
#!/bin/sh
|
|
|
|
# Include the variables that store the Docker service names
|
|
# shellcheck disable=SC1091
|
|
. /etc/opt/service_names
|
|
|
|
localip=$(ip addr show dev eth0 | grep "inet " | cut -d ' ' -f 6 | cut -f 1 -d '/')
|
|
nmap -sP "$localip/24" | grep Nmap | cut -d' ' -f5 | grep "_$MPI_WORKER_SERVICE_NAME_" > /project/hosts
|
|
|