aboutsummaryrefslogtreecommitdiffstats
path: root/community/k3s/k3s.post-install
blob: 7afeb51e428f72b8fbe24ce8571b942e303fe8d9 (plain)
1
2
3
4
5
6
7
8
9
#!/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