mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #13725 from nathan7/bird-user
bird module: run as user/group `bird`, not `ircd`
This commit is contained in:
commit
8cff02206b
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ in
|
|||
|
||||
user = mkOption {
|
||||
type = types.string;
|
||||
default = "ircd";
|
||||
default = "bird";
|
||||
description = ''
|
||||
BIRD Internet Routing Daemon user.
|
||||
'';
|
||||
|
@ -38,7 +38,7 @@ in
|
|||
|
||||
group = mkOption {
|
||||
type = types.string;
|
||||
default = "ircd";
|
||||
default = "bird";
|
||||
description = ''
|
||||
BIRD Internet Routing Daemon group.
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue