diff options
author | Qi Wang <qiwan@redhat.com> | 2018-11-02 13:19:15 -0400 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2018-11-07 09:55:59 -0500 |
commit | 879f9116de8a186558fb4e7b6a259b1b8ad1aaca (patch) | |
tree | 5b87ba4a5b0aeb7c592541cb4de4c84aa7c3f347 /libpod | |
parent | 76360d9a6ef73f694138766b81f380e45a860556 (diff) | |
download | podman-879f9116de8a186558fb4e7b6a259b1b8ad1aaca.tar.gz podman-879f9116de8a186558fb4e7b6a259b1b8ad1aaca.tar.bz2 podman-879f9116de8a186558fb4e7b6a259b1b8ad1aaca.zip |
Add hostname to /etc/hosts
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/container_internal.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go index d928c4aed..9bdf4b8fc 100644 --- a/libpod/container_internal.go +++ b/libpod/container_internal.go @@ -1157,6 +1157,10 @@ func (c *Container) generateHosts() (string, error) { hosts += fmt.Sprintf("%s %s\n", fields[1], fields[0]) } } + if len(c.state.NetworkStatus) > 0 && len(c.state.NetworkStatus[0].IPs) > 0 { + ipAddress := strings.Split(c.state.NetworkStatus[0].IPs[0].Address.String(), "/")[0] + hosts += fmt.Sprintf("%s\t%s\n", ipAddress, c.Hostname()) + } return c.writeStringToRundir("hosts", hosts) } |