mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-28 10:44:25 +01:00
Use shfmt to format all the sh file. https://github.com/mvdan/sh Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
10 lines
249 B
Bash
Executable File
10 lines
249 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
|