Skip to content

Commit a9d42e0

Browse files
authored
Merge pull request #4 from lirantal/master
fix installer schema error messages (lirantal#736)
2 parents 04825e8 + 9b5b078 commit a9d42e0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

setup/install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -757,13 +757,13 @@ daloradius_load_sql_schema() {
757757

758758
if ! mariadb --defaults-extra-file="${MARIADB_CLIENT_FILENAME}" < "${DB_DIR}/mariadb-daloradius.sql" >/dev/null 2>&1; then
759759
print_red "KO"
760-
print_red "[!] Failed to load daloRADIUS dictionaries into MariaDB. Aborting." >&2
760+
print_red "[!] Failed to load daloRADIUS base schema into MariaDB. Aborting." >&2
761761
exit 1
762762
fi
763763

764764
if ! mariadb --defaults-extra-file="${MARIADB_CLIENT_FILENAME}" < "${DB_DIR}/mariadb-daloradius-dictionaries.sql" >/dev/null 2>&1; then
765765
print_red "KO"
766-
print_red "[!] Failed to load daloRADIUS base schema into MariaDB. Aborting." >&2
766+
print_red "[!] Failed to load daloRADIUS dictionaries into MariaDB. Aborting." >&2
767767
exit 1
768768
fi
769769

@@ -895,4 +895,4 @@ else
895895
fi
896896

897897
# Call the main function to start the installation process
898-
main
898+
main

0 commit comments

Comments
 (0)