mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
11 lines
251 B
Bash
Executable File
11 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
echo "delete kata artifacts"
|
|
rm -rf /opt/kata
|
|
rm -rf /usr/share/defaults/kata-containers
|
|
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
|
|
|