diff options
Diffstat (limited to '')
-rwxr-xr-x | libexec/container/info | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/container/info b/libexec/container/info index 699a253..9c77214 100755 --- a/libexec/container/info +++ b/libexec/container/info @@ -174,16 +174,16 @@ esac case "${STATUS}" in started) - IP="$(cnt run -n ${NAME} -- hostname -I | awk '{ print $1 }')" + IP="$(cnt run -n ${NAME} -- hostname -I)" ;; *) if ls "${MACHINES}/${CONTAINER}/etc/systemd/network"/*.network > /dev/null 2>&1 then - IP="$(awk -FAddress= '/^Address/ { print $2 }' ${MACHINES}/${CONTAINER}/etc/systemd/network/*.network | head -n1)" + IP="$(awk -FAddress= '/^Address/ { print $2 }' ${MACHINES}/${CONTAINER}/etc/systemd/network/*.network)" elif [ -e "${MACHINES}/${CONTAINER}/etc/network/interfaces" ] then - IP="$(awk '/address/ { print $2 }' ${MACHINES}/${CONTAINER}/etc/network/interfaces | head -n1)" + IP="$(awk '/address/ { print $2 }' ${MACHINES}/${CONTAINER}/etc/network/interfaces)" fi IP="${IP:-n/a}" |