nixpkgs/upstart-jobs/mysql.nix
Sander van der Burg 390d2adb91 Modified variable names to follow the standard convention
svn path=/nixos/trunk/; revision=10544
2008-02-07 14:02:38 +00:00

23 lines
308 B
Nix

args: with args;
let
cfg = config.services.mysql;
mysqlService = import ../services/mysql {
inherit (pkgs) stdenv mysql;
inherit (cfg) port user dataDir
logError pidFile;
};
in
{
name = "mysql";
job = "
description \"MySQL server\"
stop on shutdown
respawn ${mysqlService}/bin/control start
";
}