mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
services: mysql-upgrade: Support custom datadir.
* gnu/services/databases.scm (mysql-upgrade-wrapper): Take service configuration as argument, and pass the config file to mysql_upgrade. (mysql-upgrade-shepherd-service): Pass CONFIG instead of just socket and executable to MYSQL-UPGRADE-WRAPPER.
This commit is contained in:
parent
c7b266fdf2
commit
6ac97bb503
1 changed files with 31 additions and 30 deletions
|
@ -6,7 +6,7 @@
|
|||
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
||||
;;; Copyright © 2018 Julien Lepiller <julien@lepiller.eu>
|
||||
;;; Copyright © 2019 Robert Vollmert <rob@vllmrt.net>
|
||||
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
||||
;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
|
||||
;;; Copyright © 2021 David Larsson <david.larsson@selfhosted.xyz>
|
||||
;;; Copyright © 2021 Aljosha Papsch <ep@stern-data.com>
|
||||
;;;
|
||||
|
@ -678,10 +678,13 @@ (define (mysql-install-shepherd-service config)
|
|||
(list #$(mysql-install config))
|
||||
#:log-file "/var/log/mysqld-install.log")))))
|
||||
|
||||
(define (mysql-upgrade-wrapper mysql socket-file)
|
||||
(define (mysql-upgrade-wrapper config)
|
||||
;; The MySQL socket and PID file may appear before the server is ready to
|
||||
;; accept connections. Ensure the socket is responsive before attempting
|
||||
;; to run the upgrade script.
|
||||
(let ((mysql (mysql-configuration-mysql config))
|
||||
(socket-file (mysql-configuration-socket config))
|
||||
(config-file (mysql-configuration-file config)))
|
||||
(program-file
|
||||
"mysql-upgrade-wrapper"
|
||||
#~(begin
|
||||
|
@ -696,7 +699,7 @@ (define (mysql-upgrade-wrapper mysql socket-file)
|
|||
(close-port sock)
|
||||
;; The socket is ready!
|
||||
(execl mysql-upgrade mysql-upgrade
|
||||
(string-append "--socket=" #$socket-file))))
|
||||
(string-append "--defaults-file=" #$config-file))))
|
||||
(lambda args
|
||||
(if (< i timeout)
|
||||
(begin
|
||||
|
@ -704,7 +707,7 @@ (define (mysql-upgrade-wrapper mysql socket-file)
|
|||
(loop (+ 1 i)))
|
||||
;; No luck, give up.
|
||||
(throw 'timeout-error
|
||||
"MySQL server did not appear in time!"))))))))))
|
||||
"MySQL server did not appear in time!")))))))))))
|
||||
|
||||
(define (mysql-upgrade-shepherd-service config)
|
||||
(list (shepherd-service
|
||||
|
@ -712,11 +715,9 @@ (define (mysql-upgrade-shepherd-service config)
|
|||
(requirement '(mysql))
|
||||
(one-shot? #t)
|
||||
(documentation "Upgrade MySQL database schemas.")
|
||||
(start (let ((mysql (mysql-configuration-mysql config))
|
||||
(socket (mysql-configuration-socket config)))
|
||||
#~(make-forkexec-constructor
|
||||
(list #$(mysql-upgrade-wrapper mysql socket))
|
||||
#:user "mysql" #:group "mysql"))))))
|
||||
(start #~(make-forkexec-constructor
|
||||
(list #$(mysql-upgrade-wrapper config))
|
||||
#:user "mysql" #:group "mysql")))))
|
||||
|
||||
|
||||
(define (mysql-shepherd-services config)
|
||||
|
|
Loading…
Reference in a new issue