nixpkgs/upstart-jobs/mysql.nix
Sander van der Burg f38ed802a6 Added MySQL to NixOS
svn path=/nixos/trunk/; revision=10306
2008-01-28 14:34:29 +00:00

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