Rock Pi quad NAS kit

Do I HAVE TO use ubuntu for NAS? seems Debian desktop doesn’t work with the rockpi-sata install script.

echo
echo ‘*** Quad SATA Hat Install for Raspberry Pi 3B+/4B+’
echo
echo ‘*** Tested distributions:’
echo ‘*** Raspbian buster 32-bit/64-bit(testing)’
echo ‘*** Ubuntu Server 20.04 armhf and arm64’
echo
echo ‘*** Please report problems to setq@radxa.com and we will try to fix.’
echo

if [ -f /etc/rpi-issue ]; then
curl -sL $RASPBIAN_URL | sudo -E bash -
elif [ “$DISTRO” == “raspbian” ]; then
curl -sL $RASPBIAN_URL | sudo -E bash -
elif [ “$DISTRO” == “ubuntu” ]; then
curl -sL $UBUNTU_URL | sudo -E bash -
else
echo ‘*** The script is not available on your system’
echo ‘*** Please visit https://rock.sh/rockpi-sata to download and install manually.’
exit 0
fi