23 lines
310 B
Nix
23 lines
310 B
Nix
|
args: with args;
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.services.mysql;
|
||
|
mysqlService = import ../services/mysql {
|
||
|
inherit (pkgs) stdenv mysql;
|
||
|
inherit (cfg) port user datadir
|
||
|
log_error pid_file;
|
||
|
};
|
||
|
|
||
|
in
|
||
|
{
|
||
|
name = "mysql";
|
||
|
job = "
|
||
|
description \"MySQL server\"
|
||
|
|
||
|
stop on shutdown
|
||
|
|
||
|
respawn ${mysqlService}/bin/control start
|
||
|
";
|
||
|
}
|