diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/system-restore | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/system-restore b/scripts/system-restore index ebc2f23..1c2f6bb 100755 --- a/scripts/system-restore +++ b/scripts/system-restore @@ -95,12 +95,12 @@ else # Restoring from v1.1+ db RET=0 if [ $RES_SAT -eq 1 ]; then - echo "--- Importing system configuration" + echo "--- Importing dozmod database (vms/lectures meta data)" mysql --defaults-extra-file=/etc/mysql/debian.cnf --default-character-set=utf8 < sat.sql RET=$? fi if [ $RET -eq 0 -a $RES_OPENSLX -eq 1 ]; then - echo "--- Importing dozmod database (vms/lectures meta data)" + echo "--- Importing system configuration" mysql --defaults-extra-file=/etc/mysql/debian.cnf --default-character-set=utf8 < openslx.sql RET=$? fi |