mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.services.pacemaker;
|
|
in
|
|
{
|
|
# interface
|
|
options.services.pacemaker = {
|
|
enable = mkEnableOption (lib.mdDoc "pacemaker");
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.pacemaker;
|
|
defaultText = literalExpression "pkgs.pacemaker";
|
|
description = lib.mdDoc "Package that should be used for pacemaker.";
|
|
};
|
|
};
|
|
|
|
# implementation
|
|
config = mkIf cfg.enable {
|
|
assertions = [ {
|
|
assertion = config.services.corosync.enable;
|
|
message = ''
|
|
Enabling services.pacemaker requires a services.corosync configuration.
|
|
'';
|
|
} ];
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
# required by pacemaker
|
|
users.users.hacluster = {
|
|
isSystemUser = true;
|
|
group = "pacemaker";
|
|
home = "/var/lib/pacemaker";
|
|
};
|
|
users.groups.pacemaker = {};
|
|
|
|
systemd.tmpfiles.rules = [
|
|
"d /var/log/pacemaker 0700 hacluster pacemaker -"
|
|
];
|
|
|
|
systemd.packages = [ cfg.package ];
|
|
systemd.services.pacemaker = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig = {
|
|
StateDirectory = "pacemaker";
|
|
StateDirectoryMode = "0700";
|
|
};
|
|
};
|
|
};
|
|
}
|