Added missing 'then'

This commit is contained in:
Michael Boelen 2019-07-16 13:21:32 +02:00
parent fa8bad20db
commit a2c57e0b75
No known key found for this signature in database
GPG Key ID: 26141F77A09D7F04
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@
LogText "Test: Checking if NIS server is installed"
PACKAGES="nis ypserv"
for PACKAGE in ${PACKAGES}; do
if PackageIsInstalled "${PACKAGE}"
if PackageIsInstalled "${PACKAGE}"; then
FOUND="${PACKAGE}"
fi
done