manage_sql.py: check that the config file exists

This commit is contained in:
Alarig Le Lay 2020-11-20 16:17:40 +01:00
parent 581f8ce861
commit ef05eae0bc
No known key found for this signature in database
GPG Key ID: C865491BF197B54F
1 changed files with 7 additions and 0 deletions

View File

@ -12,10 +12,17 @@
# */
from configparser import ConfigParser
import os
import pymysql
import sys
# Read conf.ini
INI_CONF = "./config/sql_conf.ini"
if os.path.exists(INI_CONF) is False:
print("MySQL configuration error, {}: file not found".format(INI_CONF))
sys.exit(1)
CONFIG = ConfigParser()
CONFIG.read(INI_CONF)