This commit is contained in:
Samuel Vermeulen 2023-05-22 21:09:14 +02:00
parent d2bc30a0d6
commit 30499e09f5
2 changed files with 5 additions and 2 deletions

View File

@ -39,8 +39,11 @@ export DOCBOOK_STYLESHEETS=/usr/share/xml/docbook/stylesheet/docbook-xsl-ns
make
make install
# Copie fichier de config à compléter
cp conf/rd.conf-sample /etc/rd.conf
cp conf/asound.conf-sample /etc/asound.conf
# Création user dossier audio
mkdir -p /var/snd
adduser --uid 150 --system --group --home=/var/snd rivendell
adduser ${UTILISATEUR} rivendell
chown -R rivendell:rivendell /var/snd

View File

@ -1,4 +1,4 @@
CREATE DATABASE Rivendell;
GRANT Select, Insert, Update, Delete, Create, Drop, References, Index, Alter, Create Temporary Tables, Lock Tables on Rivendell.* to rduser@'%' identified by 'letmein';
GRANT Select, Insert, Update, Delete, Create, Drop, References, Index, Alter, Create Temporary Tables, Lock Tables on Rivendell.* to rduser@'%' identified by 'hackme';
FLUSH PRIVILEGES;
SET @@global.sql_mode= 'NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';