fix: setup-container-* scripts

`setup-kubetools.sh` expects to see the `/tmp/container.txt`
file as proof that the container setup script was run.
For the newer versions of this script, the line that adds
this had been omitted.

Signed-off-by: Anthony Nandaa <profnandaa@gmail.com>
This commit is contained in:
Anthony Nandaa 2024-04-09 15:50:09 +03:00
parent 5a13bbe72d
commit be5017847d
2 changed files with 3 additions and 0 deletions

View File

@ -64,6 +64,7 @@ sudo install -m 755 runc.${PLATFORM} /usr/local/sbin/runc
sudo systemctl enable --now containerd
fi
touch /tmp/container.txt
exit
#### notes from history just in case
#!/bin/bash

View File

@ -63,3 +63,5 @@ version = 2
sudo systemctl restart containerd
fi
touch /tmp/container.txt
exit