#!/bin/sh

cd /
for link in kubectl crictl ctr; do
	target=/usr/bin/$link
	if [ ! -e $target ]; then
		ln -s /usr/bin/k3s $target
	fi
done
