forked from mirrors/nixpkgs
37c999228b
- Introduce new "server" output holding the server binaries - Adapt tsmbac.patch to new build environment - Adapt openafs nixos server module accordingly - Update upstream CellServDB: 2017-03-14 -> 2018-05-14 - Introduce package attributes to refer to the openafs packages to use for server, programs and kernel module
34 lines
910 B
Nix
34 lines
910 B
Nix
{ config, lib, pkgs, ...}:
|
|
|
|
let
|
|
inherit (lib) concatStringsSep getBin mkOption types;
|
|
|
|
in rec {
|
|
|
|
mkCellServDB = cellName: db: ''
|
|
>${cellName}
|
|
'' + (concatStringsSep "\n" (map (dbm: if (dbm.ip != "" && dbm.dnsname != "") then dbm.ip + " #" + dbm.dnsname else "")
|
|
db))
|
|
+ "\n";
|
|
|
|
# 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";
|
|
};
|
|
};
|
|
|
|
openafsMod = config.services.openafsClient.packages.module;
|
|
openafsBin = config.services.openafsClient.packages.programs;
|
|
openafsSrv = config.services.openafsServer.package;
|
|
}
|