summaryrefslogtreecommitdiffstats
path: root/doc/appendix/files/mysql.txt
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2010-12-05 16:55:12 -0600
committerSol Jerome <sol.jerome@gmail.com>2010-12-05 16:55:12 -0600
commit165f426083778303fcd2ee4d3fd697571de2867a (patch)
tree407da83c29ba233928d2ca6399972a4403d9db10 /doc/appendix/files/mysql.txt
parent6bbcc73c5b3397ff42d51e8db5e5cba67dc24c35 (diff)
downloadbcfg2-165f426083778303fcd2ee4d3fd697571de2867a.tar.gz
bcfg2-165f426083778303fcd2ee4d3fd697571de2867a.tar.bz2
bcfg2-165f426083778303fcd2ee4d3fd697571de2867a.zip
doc: Make some minor changes to the new documentation
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'doc/appendix/files/mysql.txt')
-rw-r--r--doc/appendix/files/mysql.txt17
1 files changed, 6 insertions, 11 deletions
diff --git a/doc/appendix/files/mysql.txt b/doc/appendix/files/mysql.txt
index ae4a1450b..81104ec17 100644
--- a/doc/appendix/files/mysql.txt
+++ b/doc/appendix/files/mysql.txt
@@ -1,10 +1,10 @@
.. -*- mode: rst -*-
-.. _getting_started-mysql:
+.. _appendix-files-mysql:
.. Author: Patrick Ruckstuhl
-Mysql example
+MySQL example
=============
I had some time ago to continue with putting my configuration into
@@ -15,8 +15,8 @@ I added a new bundle:
.. code-block:: xml
<Bundle name="mysql-server" version="3.0">
- <ConfigFile name="/root/bcfg2-install/mysql/users.sh"/>
- <ConfigFile name="/root/bcfg2-install/mysql/users.sql"/>
+ <Path name="/root/bcfg2-install/mysql/users.sh"/>
+ <Path name="/root/bcfg2-install/mysql/users.sql"/>
<PostInstall name="/root/bcfg2-install/mysql/users.sh"/>
<Package name="mysql-server-4.1"/>
<Service name="mysql"/>
@@ -34,18 +34,14 @@ The ``users.sh`` script looks like this:
On debian there is a user account in ``/etc/mysql/debian.cnf``
automatically created, but you could also (manually) create a
user in the database that has enough permissions and add the
-login information in a file yourself. This file looks like this:
-
-.. code-block:: sh
+login information in a file yourself. This file looks like this::
[client]
host = localhost
user = debian-sys-maint
password = XXXXXXXXXX
-The ``users.sql`` looks like this:
-
-.. code-block:: sh
+The ``users.sql`` looks like this::
DELETE FROM db;
INSERT INTO db VALUES ('localhost', 'phpmyadmin', 'pma', 'Y', 'Y',
@@ -60,4 +56,3 @@ The ``users.sql`` looks like this:
'N', 'N', 'N', '', '', '', '', 0, 0, 0);
FLUSH PRIVILEGES;
-