| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function verify_doPackageReport { |
| |
| local PACKAGE='' |
| local WARNING='' |
| |
| cli_printMessage "`ngettext "The following package needs to be installed" \ |
| "The following packages need to be installed" \ |
| "$PACKAGES_COUNT"`:" |
| |
| for PACKAGE in ${PACKAGES_MISSING[@]};do |
| |
| |
| if [[ $PACKAGE =~ $PACKAGES_THIRD_REGEX ]];then |
| WARNING=" (`gettext "requires third party repository!"`)" |
| fi |
| |
| cli_printMessage "${PACKAGE}${WARNING}" 'AsResponseLine' |
| |
| done |
| |
| cli_printMessage "`gettext "Do you want to continue"`" 'AsYesOrNoRequestLine' |
| |
| } |