about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2018-09-03 11:18:11 -0400
committerTim Steinbach <tim@nequissimus.com>2018-09-03 11:18:11 -0400
commit5fccac2b8d77a660a968809519710a5bb7838e63 (patch)
tree1ce25dd58632f6c5a35dfc610ce747a30e4ddc19 /nixos/tests
parenteac06ed0702638b7e9a058e5412940474ff872ca (diff)
downloadnixlib-5fccac2b8d77a660a968809519710a5bb7838e63.tar
nixlib-5fccac2b8d77a660a968809519710a5bb7838e63.tar.gz
nixlib-5fccac2b8d77a660a968809519710a5bb7838e63.tar.bz2
nixlib-5fccac2b8d77a660a968809519710a5bb7838e63.tar.lz
nixlib-5fccac2b8d77a660a968809519710a5bb7838e63.tar.xz
nixlib-5fccac2b8d77a660a968809519710a5bb7838e63.tar.zst
nixlib-5fccac2b8d77a660a968809519710a5bb7838e63.zip
kernel: Remove Copperhead
The patches are unmaintained and suggest a false sense of security
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/kernel-copperhead.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/nixos/tests/kernel-copperhead.nix b/nixos/tests/kernel-copperhead.nix
deleted file mode 100644
index 652fbf055373..000000000000
--- a/nixos/tests/kernel-copperhead.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-import ./make-test.nix ({ pkgs, ...} : {
-  name = "kernel-copperhead";
-  meta = with pkgs.stdenv.lib.maintainers; {
-    maintainers = [ nequissimus ];
-  };
-
-  machine = { pkgs, ... }:
-    {
-      boot.kernelPackages = pkgs.linuxPackages_copperhead_lts;
-    };
-
-  testScript =
-    ''
-      $machine->succeed("uname -a");
-      $machine->succeed("uname -s | grep 'Linux'");
-      $machine->succeed("uname -a | grep '${pkgs.linuxPackages_copperhead_lts.kernel.modDirVersion}'");
-      $machine->succeed("uname -a | grep 'hardened'");
-    '';
-})