diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-01-26 10:13:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-26 10:13:56 +0100 |
commit | 79565d1af18f07754e067b7203f42122d8fc03a9 (patch) | |
tree | c0869382db971ef17d8942b7dee5f51aee754dca /test/system/070-build.bats | |
parent | 6ba8819d336ed3514b57c5818123ddfac80555ef (diff) | |
parent | 97f5e9458c8d618989e5ff386620bfee35942df3 (diff) | |
download | podman-79565d1af18f07754e067b7203f42122d8fc03a9.tar.gz podman-79565d1af18f07754e067b7203f42122d8fc03a9.tar.bz2 podman-79565d1af18f07754e067b7203f42122d8fc03a9.zip |
Merge pull request #9094 from rhatdan/mount
Pass DefaultMountsFile to podman build
Diffstat (limited to 'test/system/070-build.bats')
-rw-r--r-- | test/system/070-build.bats | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/system/070-build.bats b/test/system/070-build.bats index 9e5e3ee1d..05518d8fc 100644 --- a/test/system/070-build.bats +++ b/test/system/070-build.bats @@ -188,8 +188,7 @@ ADD mycmd /bin/mydefaultcmd RUN chmod 755 /bin/mydefaultcmd RUN chown 2:3 /bin/mydefaultcmd -#FIXME FIXME FIXME: enable if/when 'podman build' passes mounts.conf to buildah -#RUN $CAT_SECRET +RUN $CAT_SECRET CMD ["/bin/mydefaultcmd","$s_echo"] EOF @@ -201,8 +200,7 @@ EOF local iid="${lines[-1]}" # Make sure 'podman build' had the secret mounted - #FIXME FIXME: enable if/when 'podman build' passes mounts.conf to buildah - #is "$output" ".*$secret_contents.*" "podman build has /run/secrets mounted" + is "$output" ".*$secret_contents.*" "podman build has /run/secrets mounted" if is_remote; then ENVHOST="" |