diff --git a/setup-container.sh b/setup-container.sh index e574500..6067425 100755 --- a/setup-container.sh +++ b/setup-container.sh @@ -13,7 +13,7 @@ OSVERSION=$(hostnamectl | awk '/Operating/ { print $4 }') sudo apt install -y jq -if [ $MYOS = "Ubuntu" ] +if [ $MYOS = "Ubuntu" ] || [ $MYOS = "Debian" ] then ### setting up container runtime prereq cat <<- EOF | sudo tee /etc/modules-load.d/containerd.conf diff --git a/setup-kubetools.sh b/setup-kubetools.sh index a018985..04c59c3 100755 --- a/setup-kubetools.sh +++ b/setup-kubetools.sh @@ -26,14 +26,14 @@ KUBEVERSION=$(curl -s https://api.github.com/repos/kubernetes/kubernetes/release KUBEVERSION=${KUBEVERSION%.*} -if [ $MYOS = "Ubuntu" ] +if [ $MYOS = "Ubuntu" ] || [ $MYOS = "Debian" ] then - echo RUNNING UBUNTU CONFIG + echo RUNNING UBUNTU/Debian CONFIG cat <