Samuel Vermeulen 6 days ago
parent
commit
30499e09f5
  1. 5
      install.sh
  2. 2
      rivendell.sql

5
install.sh

@ -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

2
rivendell.sql

@ -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';
Loading…
Cancel
Save