mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 07:43:43 +00:00
94 lines
2.4 KiB
Nix
94 lines
2.4 KiB
Nix
{ config, lib, pkgs, ...} :
|
|
let
|
|
cfg = config.services.orangefs.client;
|
|
|
|
in {
|
|
###### interface
|
|
|
|
options = {
|
|
services.orangefs.client = {
|
|
enable = lib.mkEnableOption "OrangeFS client daemon";
|
|
|
|
extraOptions = lib.mkOption {
|
|
type = with lib.types; listOf str;
|
|
default = [];
|
|
description = "Extra command line options for pvfs2-client.";
|
|
};
|
|
|
|
fileSystems = lib.mkOption {
|
|
description = ''
|
|
The orangefs file systems to be mounted.
|
|
This option is preferred over using {option}`fileSystems` directly since
|
|
the pvfs client service needs to be running for it to be mounted.
|
|
'';
|
|
|
|
example = [{
|
|
mountPoint = "/orangefs";
|
|
target = "tcp://server:3334/orangefs";
|
|
}];
|
|
|
|
type = with lib.types; listOf (submodule ({ ... } : {
|
|
options = {
|
|
|
|
mountPoint = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "/orangefs";
|
|
description = "Mount point.";
|
|
};
|
|
|
|
options = lib.mkOption {
|
|
type = with lib.types; listOf str;
|
|
default = [];
|
|
description = "Mount options";
|
|
};
|
|
|
|
target = lib.mkOption {
|
|
type = lib.types.str;
|
|
example = "tcp://server:3334/orangefs";
|
|
description = "Target URL";
|
|
};
|
|
};
|
|
}));
|
|
};
|
|
};
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [ pkgs.orangefs ];
|
|
|
|
boot.supportedFilesystems = [ "pvfs2" ];
|
|
boot.kernelModules = [ "orangefs" ];
|
|
|
|
systemd.services.orangefs-client = {
|
|
requires = [ "network-online.target" ];
|
|
after = [ "network-online.target" ];
|
|
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
|
|
ExecStart = ''
|
|
${pkgs.orangefs}/bin/pvfs2-client-core \
|
|
--logtype=syslog ${lib.concatStringsSep " " cfg.extraOptions}
|
|
'';
|
|
|
|
TimeoutStopSec = "120";
|
|
};
|
|
};
|
|
|
|
systemd.mounts = map (fs: {
|
|
requires = [ "orangefs-client.service" ];
|
|
after = [ "orangefs-client.service" ];
|
|
bindsTo = [ "orangefs-client.service" ];
|
|
wantedBy = [ "remote-fs.target" ];
|
|
type = "pvfs2";
|
|
options = lib.concatStringsSep "," fs.options;
|
|
what = fs.target;
|
|
where = fs.mountPoint;
|
|
}) cfg.fileSystems;
|
|
};
|
|
}
|
|
|