diff options
author | baude <bbaude@redhat.com> | 2018-01-20 11:07:35 -0600 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-01-21 17:24:49 +0000 |
commit | 5c3e4cfa62452b9cd5c2c08bf081ab524ded1cb4 (patch) | |
tree | d259c5a6c689141a43fd4f9249b4aa7697d4e320 /test | |
parent | 946b4ced544e5988a971da12c7e34a684ab0e39d (diff) | |
download | podman-5c3e4cfa62452b9cd5c2c08bf081ab524ded1cb4.tar.gz podman-5c3e4cfa62452b9cd5c2c08bf081ab524ded1cb4.tar.bz2 podman-5c3e4cfa62452b9cd5c2c08bf081ab524ded1cb4.zip |
Override hostname for container
Adds the ability to override the container's hostname. Also, uses
the first twelve characters of the container ID as the default hostname
if none is provided.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #248
Approved by: baude
Diffstat (limited to 'test')
-rw-r--r-- | test/podman_run_dns.bats | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/podman_run_dns.bats b/test/podman_run_dns.bats index bdb99dedd..d37737093 100644 --- a/test/podman_run_dns.bats +++ b/test/podman_run_dns.bats @@ -45,3 +45,12 @@ function setup() { echo "$output" [ "$status" -eq 0 ] } + +@test "test addition of hostname" { + run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run --rm --hostname='foobar' ${ALPINE} cat /etc/hostname | grep foobar" + echo "$output" + [ "$status" -eq 0 ] + run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run --rm --hostname='foobar' ${ALPINE} hostname | grep foobar" + echo "$output" + [ "$status" -eq 0 ] +} |