2009-03-06 13:27:00 +01:00
|
|
|
{pkgs, config, ...}:
|
|
|
|
|
2008-01-28 15:34:29 +01:00
|
|
|
let
|
2009-07-15 13:19:11 +02:00
|
|
|
inherit (pkgs.lib) mkOption mkIf singleton;
|
2008-01-28 15:34:29 +01:00
|
|
|
|
2008-06-25 23:58:51 +02:00
|
|
|
cfg = config.services.mysql;
|
|
|
|
|
|
|
|
mysql = pkgs.mysql;
|
|
|
|
|
|
|
|
pidFile = "${cfg.pidDir}/mysqld.pid";
|
|
|
|
|
|
|
|
mysqldOptions =
|
|
|
|
"--user=${cfg.user} --datadir=${cfg.dataDir} " +
|
|
|
|
"--log-error=${cfg.logError} --pid-file=${pidFile}";
|
2008-01-28 15:34:29 +01:00
|
|
|
|
|
|
|
in
|
2008-06-25 23:58:51 +02:00
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.mysql = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = "
|
|
|
|
Whether to enable the MySQL server.
|
|
|
|
";
|
|
|
|
};
|
|
|
|
|
|
|
|
port = mkOption {
|
|
|
|
default = "3306";
|
|
|
|
description = "Port of MySQL";
|
|
|
|
};
|
|
|
|
|
|
|
|
user = mkOption {
|
|
|
|
default = "mysql";
|
|
|
|
description = "User account under which MySQL runs";
|
|
|
|
};
|
|
|
|
|
|
|
|
dataDir = mkOption {
|
|
|
|
default = "/var/mysql";
|
|
|
|
description = "Location where MySQL stores its table files";
|
|
|
|
};
|
|
|
|
|
|
|
|
logError = mkOption {
|
|
|
|
default = "/var/log/mysql_err.log";
|
|
|
|
description = "Location of the MySQL error logfile";
|
|
|
|
};
|
|
|
|
|
|
|
|
pidDir = mkOption {
|
|
|
|
default = "/var/run/mysql";
|
|
|
|
description = "Location of the file which stores the PID of the MySQL server";
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-03-06 13:27:00 +01:00
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
###### implementation
|
2008-06-25 23:58:51 +02:00
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
config = mkIf config.services.mysql.enable {
|
|
|
|
|
|
|
|
users.extraUsers = singleton
|
2009-03-06 13:27:00 +01:00
|
|
|
{ name = "mysql";
|
|
|
|
description = "MySQL server user";
|
2009-07-15 13:19:11 +02:00
|
|
|
};
|
2009-03-06 13:27:00 +01:00
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
environment.systemPackages = [mysql];
|
2009-03-06 13:27:00 +01:00
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
jobs = singleton {
|
|
|
|
name = "mysql";
|
2009-03-06 13:27:00 +01:00
|
|
|
|
|
|
|
job = ''
|
|
|
|
description "MySQL server"
|
2008-06-25 23:58:51 +02:00
|
|
|
|
2009-03-06 13:27:00 +01:00
|
|
|
stop on shutdown
|
2008-06-25 23:58:51 +02:00
|
|
|
|
2009-03-06 13:27:00 +01:00
|
|
|
start script
|
|
|
|
if ! test -e ${cfg.dataDir}; then
|
|
|
|
mkdir -m 0700 -p ${cfg.dataDir}
|
|
|
|
chown -R ${cfg.user} ${cfg.dataDir}
|
|
|
|
${mysql}/bin/mysql_install_db ${mysqldOptions}
|
|
|
|
fi
|
2008-06-25 23:58:51 +02:00
|
|
|
|
2009-03-06 13:27:00 +01:00
|
|
|
mkdir -m 0700 -p ${cfg.pidDir}
|
|
|
|
chown -R ${cfg.user} ${cfg.pidDir}
|
|
|
|
end script
|
2008-01-28 15:34:29 +01:00
|
|
|
|
2009-03-06 13:27:00 +01:00
|
|
|
respawn ${mysql}/bin/mysqld ${mysqldOptions}
|
2008-01-28 15:34:29 +01:00
|
|
|
|
2009-03-06 13:27:00 +01:00
|
|
|
stop script
|
|
|
|
pid=$(cat ${pidFile})
|
|
|
|
kill "$pid"
|
|
|
|
${mysql}/bin/mysql_waitpid "$pid" 1000
|
|
|
|
end script
|
|
|
|
'';
|
2009-07-15 13:19:11 +02:00
|
|
|
};
|
|
|
|
|
2009-03-06 13:27:00 +01:00
|
|
|
};
|
2009-07-15 13:19:11 +02:00
|
|
|
|
2008-01-28 15:34:29 +01:00
|
|
|
}
|