Convert "irc-hybrid"
svn path=/nixos/branches/fix-style/; revision=14387
This commit is contained in:
parent
e6144b4763
commit
030a30b4b6
@ -479,78 +479,6 @@ in
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
ircdHybrid = {
|
|
||||||
|
|
||||||
enable = mkOption {
|
|
||||||
default = false;
|
|
||||||
description = "
|
|
||||||
Enable IRCD.
|
|
||||||
";
|
|
||||||
};
|
|
||||||
|
|
||||||
serverName = mkOption {
|
|
||||||
default = "hades.arpa";
|
|
||||||
description = "
|
|
||||||
IRCD server name.
|
|
||||||
";
|
|
||||||
};
|
|
||||||
|
|
||||||
sid = mkOption {
|
|
||||||
default = "0NL";
|
|
||||||
description = "
|
|
||||||
IRCD server unique ID in a net of servers.
|
|
||||||
";
|
|
||||||
};
|
|
||||||
|
|
||||||
description = mkOption {
|
|
||||||
default = "Hybrid-7 IRC server.";
|
|
||||||
description = "
|
|
||||||
IRCD server description.
|
|
||||||
";
|
|
||||||
};
|
|
||||||
|
|
||||||
rsaKey = mkOption {
|
|
||||||
default = null;
|
|
||||||
example = /root/certificates/irc.key;
|
|
||||||
description = "
|
|
||||||
IRCD server RSA key.
|
|
||||||
";
|
|
||||||
};
|
|
||||||
|
|
||||||
certificate = mkOption {
|
|
||||||
default = null;
|
|
||||||
example = /root/certificates/irc.pem;
|
|
||||||
description = "
|
|
||||||
IRCD server SSL certificate. There are some limitations - read manual.
|
|
||||||
";
|
|
||||||
};
|
|
||||||
|
|
||||||
adminEmail = mkOption {
|
|
||||||
default = "<bit-bucket@example.com>";
|
|
||||||
example = "<name@domain.tld>";
|
|
||||||
description = "
|
|
||||||
IRCD server administrator e-mail.
|
|
||||||
";
|
|
||||||
};
|
|
||||||
|
|
||||||
extraIPs = mkOption {
|
|
||||||
default = [];
|
|
||||||
example = ["127.0.0.1"];
|
|
||||||
description = "
|
|
||||||
Extra IP's to bind.
|
|
||||||
";
|
|
||||||
};
|
|
||||||
|
|
||||||
extraPort = mkOption {
|
|
||||||
default = "7117";
|
|
||||||
description = "
|
|
||||||
Extra port to avoid filtering.
|
|
||||||
";
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
xfs = {
|
xfs = {
|
||||||
|
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
@ -972,6 +900,7 @@ in
|
|||||||
(import ../upstart-jobs/cupsd.nix) # CUPS printing daemon
|
(import ../upstart-jobs/cupsd.nix) # CUPS printing daemon
|
||||||
(import ../upstart-jobs/udev.nix) # The udev daemon creates devices nodes and runs programs when hardware events occur.
|
(import ../upstart-jobs/udev.nix) # The udev daemon creates devices nodes and runs programs when hardware events occur.
|
||||||
(import ../upstart-jobs/samba.nix) # TODO: doesn't start here (?)
|
(import ../upstart-jobs/samba.nix) # TODO: doesn't start here (?)
|
||||||
|
(import ../upstart-jobs/ircd-hybrid.nix) # TODO: doesn't compile on x86_64-linux, can't test
|
||||||
|
|
||||||
# nix
|
# nix
|
||||||
(import ../upstart-jobs/nix.nix) # nix options and daemon
|
(import ../upstart-jobs/nix.nix) # nix options and daemon
|
||||||
|
@ -155,11 +155,6 @@ let
|
|||||||
inherit config pkgs;
|
inherit config pkgs;
|
||||||
})
|
})
|
||||||
|
|
||||||
++ optional config.services.ircdHybrid.enable
|
|
||||||
(import ../upstart-jobs/ircd-hybrid.nix {
|
|
||||||
inherit config pkgs;
|
|
||||||
})
|
|
||||||
|
|
||||||
# Postfix mail server.
|
# Postfix mail server.
|
||||||
++ optional config.services.postfix.enable
|
++ optional config.services.postfix.enable
|
||||||
(import ../upstart-jobs/postfix.nix {
|
(import ../upstart-jobs/postfix.nix {
|
||||||
|
@ -1,7 +1,90 @@
|
|||||||
{config, pkgs}:
|
{pkgs, config, ...}:
|
||||||
|
|
||||||
|
###### interface
|
||||||
|
let
|
||||||
|
inherit (pkgs.lib) mkOption mkIf;
|
||||||
|
|
||||||
|
options = {
|
||||||
|
services = {
|
||||||
|
ircdHybrid = {
|
||||||
|
|
||||||
|
enable = mkOption {
|
||||||
|
default = false;
|
||||||
|
description = "
|
||||||
|
Enable IRCD.
|
||||||
|
";
|
||||||
|
};
|
||||||
|
|
||||||
|
serverName = mkOption {
|
||||||
|
default = "hades.arpa";
|
||||||
|
description = "
|
||||||
|
IRCD server name.
|
||||||
|
";
|
||||||
|
};
|
||||||
|
|
||||||
|
sid = mkOption {
|
||||||
|
default = "0NL";
|
||||||
|
description = "
|
||||||
|
IRCD server unique ID in a net of servers.
|
||||||
|
";
|
||||||
|
};
|
||||||
|
|
||||||
|
description = mkOption {
|
||||||
|
default = "Hybrid-7 IRC server.";
|
||||||
|
description = "
|
||||||
|
IRCD server description.
|
||||||
|
";
|
||||||
|
};
|
||||||
|
|
||||||
|
rsaKey = mkOption {
|
||||||
|
default = null;
|
||||||
|
example = /root/certificates/irc.key;
|
||||||
|
description = "
|
||||||
|
IRCD server RSA key.
|
||||||
|
";
|
||||||
|
};
|
||||||
|
|
||||||
|
certificate = mkOption {
|
||||||
|
default = null;
|
||||||
|
example = /root/certificates/irc.pem;
|
||||||
|
description = "
|
||||||
|
IRCD server SSL certificate. There are some limitations - read manual.
|
||||||
|
";
|
||||||
|
};
|
||||||
|
|
||||||
|
adminEmail = mkOption {
|
||||||
|
default = "<bit-bucket@example.com>";
|
||||||
|
example = "<name@domain.tld>";
|
||||||
|
description = "
|
||||||
|
IRCD server administrator e-mail.
|
||||||
|
";
|
||||||
|
};
|
||||||
|
|
||||||
|
extraIPs = mkOption {
|
||||||
|
default = [];
|
||||||
|
example = ["127.0.0.1"];
|
||||||
|
description = "
|
||||||
|
Extra IP's to bind.
|
||||||
|
";
|
||||||
|
};
|
||||||
|
|
||||||
|
extraPort = mkOption {
|
||||||
|
default = "7117";
|
||||||
|
description = "
|
||||||
|
Extra port to avoid filtering.
|
||||||
|
";
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in
|
||||||
|
|
||||||
|
###### implementation
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.services.ircdHybrid;
|
cfg = config.services.ircdHybrid;
|
||||||
ircdService = import ../services/ircd-hybrid {
|
ircdService = import ../../services/ircd-hybrid {
|
||||||
stdenv = pkgs.stdenv;
|
stdenv = pkgs.stdenv;
|
||||||
inherit (pkgs) ircdHybrid coreutils
|
inherit (pkgs) ircdHybrid coreutils
|
||||||
su iproute gnugrep procps;
|
su iproute gnugrep procps;
|
||||||
@ -20,19 +103,28 @@ let
|
|||||||
startingDependency = if config.services.gw6c.enable then "gw6c" else "network-interfaces";
|
startingDependency = if config.services.gw6c.enable then "gw6c" else "network-interfaces";
|
||||||
|
|
||||||
in
|
in
|
||||||
{
|
|
||||||
|
mkIf config.services.ircdHybrid.enable {
|
||||||
|
require = [
|
||||||
|
options
|
||||||
|
];
|
||||||
|
|
||||||
|
services = {
|
||||||
|
extraJobs = [{
|
||||||
name = "ircd-hybrid";
|
name = "ircd-hybrid";
|
||||||
users = [ {
|
users = [ {
|
||||||
name = "ircd";
|
name = "ircd";
|
||||||
description = "IRCD owner.";
|
description = "IRCD owner.";
|
||||||
} ];
|
} ];
|
||||||
groups = [{name = "ircd";}];
|
groups = [{name = "ircd";}];
|
||||||
job = "
|
job = ''
|
||||||
description = \"IRCD Hybrid server.\"
|
description = "IRCD Hybrid server."
|
||||||
|
|
||||||
start on ${startingDependency}/started
|
start on ${startingDependency}/started
|
||||||
stop on ${startingDependency}/stop
|
stop on ${startingDependency}/stop
|
||||||
|
|
||||||
respawn ${ircdService}/bin/control start
|
respawn ${ircdService}/bin/control start
|
||||||
";
|
'';
|
||||||
|
}];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user