4 lines
164 B
Bash
Executable File
4 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
service mariadb status > /dev/null 2>&1 || service mariadb start
|
|
mariadb --user=root < /app/scripts/dolibarr.sql && echo "Dolibarr user and DB created."
|