diff options
author | methuselah-0 <david.larsson@selfhosted.xyz> | 2021-04-11 10:30:01 +0200 |
---|---|---|
committer | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-04-27 20:45:35 +0200 |
commit | 3802bb0ba027b5e792dc7cbecabaf19889acdc7b (patch) | |
tree | 68d417300d43385ea08995ea5b186ffb00e1b284 /doc | |
parent | 1f5543e7ff5db3f085edb5d6aa150be29bb4af43 (diff) | |
download | guix-3802bb0ba027b5e792dc7cbecabaf19889acdc7b.tar.gz |
services: mysql: Add extra-environment as configuration option.
* gnu/services/databases.scm (mysql-configuration): Add extra-environment (mysql-service): Use #:log-file and #:environment-variables * doc/guix.texi: Document it. Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 038d321462..dbea5cadcb 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -19919,6 +19919,9 @@ Socket file to use for local (non-network) connections. @item @code{extra-content} (default: @code{""}) Additional settings for the @file{my.cnf} configuration file. +@item @code{extra-environment} (default: @code{#~'()}) +List of environment variables passed to the @command{mysqld} process. + @item @code{auto-upgrade?} (default: @code{#t}) Whether to automatically run @command{mysql_upgrade} after starting the service. This is necessary to upgrade the @dfn{system schema} after |