Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Dockerfile.fedora
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ RUN mkdir -p /etc/containers
COPY test/policy.json /etc/containers/policy.json
COPY test/redhat_sigstore.yaml /etc/containers/registries.d/registry.access.redhat.com.yaml

# WORKAROUND/HACK (05/30/19): metacopy=on breaks tests using VFS"
RUN echo "WORKAROUND/HACK (05/30/19): metacopy=on breaks tests using VFS" && \
sed -i -r -e 's/^mountopt =.+/mountopt = "nodev"/' /etc/containers/storage.conf

# Install varlink stuff
RUN pip3 install varlink

Expand Down
6 changes: 6 additions & 0 deletions contrib/cirrus/setup_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ cd "${GOSRC}/"
# Reload to incorporate any changes from above
source "$SCRIPT_BASE/lib.sh"

if [[ -r "/etc/containers/storage.conf" ]]
then
echo ">>>>> WORKAROUND/HACK (05/30/19): metacopy=on breaks tests using VFS"
sed -i -r -e 's/^mountopt =.+/mountopt = "nodev"/' /etc/containers/storage.conf
fi

echo "Installing cni config, policy and registry config"
req_env_var GOSRC
sudo install -D -m 755 $GOSRC/cni/87-podman-bridge.conflist \
Expand Down