@brokep

Results 6 issues of @brokep

I added missing DROP TABLE IF EXISTS lines as it prevents the installation script from completing without having them in there. Also need to add SET SQL_SAFE_UPDATES = 0; to...

mysql is no longer included in the repos so I have added mariadb & mariadb-server in the installation requirements.

The changes made are: Changed MySQL-specific variables to MariaDB equivalents. Updated the usage function to mention MariaDB. Changed the check for /etc/init.d/mysqld to /etc/init.d/mariadb. Changed the database reset command to...

SET SQL_SAFE_UPDATES = 0;: This allows updates and deletes without any restrictions. Given that you're running a script to initialize a database, it's common to disable safe updates temporarily, but...

SET SQL_SAFE_UPDATES = 0;: This allows updates and deletes without any restrictions. Given that you're running a script to initialize a database, it's common to disable safe updates temporarily, but...