You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
405 B
17 lines
405 B
#!/bin/bash
|
|
|
|
chemin_script=$(dirname "$0")
|
|
|
|
mkdir -p /etc/postfix/bdd
|
|
rm -f /etc/postfix/bdd/postfix.sqlite
|
|
|
|
# Création des tables
|
|
echo "CREATION TABLES"
|
|
sqlite3 /etc/postfix/bdd/postfix.sqlite < "${chemin_script}"/postfix_tables.sql
|
|
|
|
# Création des données
|
|
echo "CREATION DONNÉES"
|
|
sqlite3 /etc/postfix/bdd/postfix.sqlite < "${chemin_script}"/postfix_données.sql
|
|
|
|
chown -R www-data: /etc/postfix/bdd
|