#!/bin/bash export TEXTDOMAIN="zero-lliurexlab-installer" MSG_ADVERTISEMENT=$(gettext "You are going to configure LliureX-lab \\nIt includes mysql, http, php and others, if needs.\\n It will take a long time.\\n Be patient.") MSG_DONE=$(gettext "Done") MSG_TITLE=$(gettext "Advertisement") MSG_NOCONFIGURE=$(gettext "No configuration done") zero-center add-pulsating-color zero-lliurexlab-installer MYSQL_PASS=$(mysql_root_passwd -g) if [ $MYSQL_PASS == "" ] then mysql_root_passwd -i MYSQL_PASS=$(mysql_root_passwd -g) fi /var/www/lliurexlab/admin.sh -i -v -user admin --password admin -email admin@aula.llx -tz "Europe/Berlin" -group "admins" --db-type ^Csql --db-host localhost --db-user root --db-pass $MYSQL_PASS --db-name openmeetings --smtp-server localhost --email-auth-user noreply@lliurex.net zero-center remove-pulsating-color zero-lliurexlab-installer zero-center set-configured zero-lliurexlab-installer exit 0