Skip to content

Commit

Permalink
grsecurity: fix 'isYes' and 'isNo'
Browse files Browse the repository at this point in the history
(cherry picked from commit faa6f9b)
  • Loading branch information
Timofei Kushnir authored and joachifm committed Oct 29, 2016
1 parent 0ba1ea8 commit dce54d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nixos/modules/security/grsecurity.nix
Expand Up @@ -67,9 +67,9 @@ in
system.requiredKernelConfig = with config.lib.kernelConfig;
[ (isEnabled "GRKERNSEC")
(isEnabled "PAX")
(isYES "GRKERNSEC_SYSCTL")
(isYES "GRKERNSEC_SYSCTL_DISTRO")
(isNO "GRKERNSEC_NO_RBAC")
(isYes "GRKERNSEC_SYSCTL")
(isYes "GRKERNSEC_SYSCTL_DISTRO")
(isNo "GRKERNSEC_NO_RBAC")
];

# Install PaX related utillities into the system profile.
Expand Down

0 comments on commit dce54d4

Please sign in to comment.