diff --git a/packages/bsp/common/etc/update-motd.d/41-armbian-config b/packages/bsp/common/etc/update-motd.d/41-armbian-config index 5f026d8c7..d2633937a 100755 --- a/packages/bsp/common/etc/update-motd.d/41-armbian-config +++ b/packages/bsp/common/etc/update-motd.d/41-armbian-config @@ -12,6 +12,13 @@ for f in $MOTD_DISABLE; do [[ $f == $THIS_SCRIPT ]] && exit 0 done -[[ $(( $RANDOM % 2 )) == 0 && -f /usr/sbin/armbian-config ]] && echo -e "[\e[31m General system configuration\e[0m: \e[1marmbian-config\e[0m ]\n" +if [[ $(( $RANDOM % 2 )) == 0 ]]; then + if [[ -f /usr/sbin/armbian-config ]]; then + echo -e "[\e[31m General system configuration (beta)\e[0m: \e[1marmbian-config\e[0m ]\n" + else + echo -e "[\e[31m Menu-driven system configuration (beta)\e[0m: \e[1msudo apt update && sudo apt install armbian-config\e[0m ]\n" + fi +fi + +exit 0 -exit 0 \ No newline at end of file