mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03: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.
60 lines
1.8 KiB
Nix
60 lines
1.8 KiB
Nix
{ config, lib, pkgs, ...}:
|
|
with lib;
|
|
let
|
|
cfg = config.services.gateone;
|
|
in
|
|
{
|
|
options = {
|
|
services.gateone = {
|
|
enable = mkEnableOption (lib.mdDoc "GateOne server");
|
|
pidDir = mkOption {
|
|
default = "/run/gateone";
|
|
type = types.path;
|
|
description = lib.mdDoc "Path of pid files for GateOne.";
|
|
};
|
|
settingsDir = mkOption {
|
|
default = "/var/lib/gateone";
|
|
type = types.path;
|
|
description = lib.mdDoc "Path of configuration files for GateOne.";
|
|
};
|
|
};
|
|
};
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs.pythonPackages; [
|
|
gateone pkgs.openssh pkgs.procps pkgs.coreutils pkgs.cacert];
|
|
|
|
users.users.gateone = {
|
|
description = "GateOne privilege separation user";
|
|
uid = config.ids.uids.gateone;
|
|
home = cfg.settingsDir;
|
|
};
|
|
users.groups.gateone.gid = config.ids.gids.gateone;
|
|
|
|
systemd.services.gateone = with pkgs; {
|
|
description = "GateOne web-based terminal";
|
|
path = [ pythonPackages.gateone nix openssh procps coreutils ];
|
|
preStart = ''
|
|
if [ ! -d ${cfg.settingsDir} ] ; then
|
|
mkdir -m 0750 -p ${cfg.settingsDir}
|
|
chown -R gateone:gateone ${cfg.settingsDir}
|
|
fi
|
|
if [ ! -d ${cfg.pidDir} ] ; then
|
|
mkdir -m 0750 -p ${cfg.pidDir}
|
|
chown -R gateone:gateone ${cfg.pidDir}
|
|
fi
|
|
'';
|
|
#unitConfig.RequiresMountsFor = "${cfg.settingsDir}";
|
|
serviceConfig = {
|
|
ExecStart = ''${pythonPackages.gateone}/bin/gateone --settings_dir=${cfg.settingsDir} --pid_file=${cfg.pidDir}/gateone.pid --gid=${toString config.ids.gids.gateone} --uid=${toString config.ids.uids.gateone}'';
|
|
User = "gateone";
|
|
Group = "gateone";
|
|
WorkingDirectory = cfg.settingsDir;
|
|
};
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
requires = [ "network.target" ];
|
|
};
|
|
};
|
|
}
|
|
|