mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-22 12:29:49 +00:00
1.2.0 release changed the tarball file layout for the Kata artifacts. Adjust scripts accordingly. Fixes: #142 Signed-off-by: Eric Ernst <eric.ernst@intel.com>
9 lines
206 B
Bash
Executable File
9 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
echo "delete kata artifacts"
|
|
rm -rf /opt/kata
|
|
rm -f /etc/containerd/config.toml
|
|
|
|
if [ -f /etc/containerd/config.toml.bak ]; then
|
|
mv /etc/containerd/config.toml.bak /etc/containerd/config.toml
|
|
fi
|