mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
ce74e1cc36
Add a lot of options to the client to make it more usable and compatible with the OpenAFS server module.
29 lines
696 B
Nix
29 lines
696 B
Nix
{ lib, ...}:
|
|
|
|
let
|
|
inherit (lib) concatStringsSep mkOption types;
|
|
|
|
in rec {
|
|
|
|
mkCellServDB = cellName: db: ''
|
|
>${cellName}
|
|
'' + (concatStringsSep "\n" (map (dbm: if (dbm.ip != "" && dbm.dnsname != "") then dbm.ip + " #" + dbm.dnsname else "")
|
|
db));
|
|
|
|
# CellServDB configuration type
|
|
cellServDBConfig = {
|
|
ip = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
example = "1.2.3.4";
|
|
description = "IP Address of a database server";
|
|
};
|
|
dnsname = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
example = "afs.example.org";
|
|
description = "DNS full-qualified domain name of a database server";
|
|
};
|
|
};
|
|
}
|