nixpkgs/upstart-jobs/mysql.nix

23 lines
310 B
Nix
Raw Normal View History

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
";
}