diff --git a/setup-container.sh b/setup-container.sh index 1b98c49..9cbe394 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 e6a9b19..8d7209c 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 <