summary refs log tree commit diff
path: root/nixos/tests/all-tests.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2019-03-14 15:26:10 +0100
committeraszlig <aszlig@nix.build>2019-03-14 19:14:03 +0100
commit0ba48f46dacf1d0771cb1995a9a0ff6c1bd2e4fb (patch)
tree65d35c862b0fe671969671f02d1c459dbda871e7 /nixos/tests/all-tests.nix
parentac64ce994509aaad8c5b55254595a5f989ba24e9 (diff)
downloadnixpkgs-0ba48f46dacf1d0771cb1995a9a0ff6c1bd2e4fb.tar
nixpkgs-0ba48f46dacf1d0771cb1995a9a0ff6c1bd2e4fb.tar.gz
nixpkgs-0ba48f46dacf1d0771cb1995a9a0ff6c1bd2e4fb.tar.bz2
nixpkgs-0ba48f46dacf1d0771cb1995a9a0ff6c1bd2e4fb.tar.lz
nixpkgs-0ba48f46dacf1d0771cb1995a9a0ff6c1bd2e4fb.tar.xz
nixpkgs-0ba48f46dacf1d0771cb1995a9a0ff6c1bd2e4fb.tar.zst
nixpkgs-0ba48f46dacf1d0771cb1995a9a0ff6c1bd2e4fb.zip
nixos/systemd-chroot: Rename chroot to confinement
Quoting @edolstra from [1]:

  I don't really like the name "chroot", something like "confine[ment]"
  or "restrict" seems better. Conceptually we're not providing a
  completely different filesystem tree but a restricted view of the same
  tree.

I already used "confinement" as a sub-option and I do agree that
"chroot" sounds a bit too specific (especially because not *only* chroot
is involved).

So this changes the module name and its option to use "confinement"
instead of "chroot" and also renames the "chroot.confinement" to
"confinement.mode".

[1]: https://github.com/NixOS/nixpkgs/pull/57519#issuecomment-472855704

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'nixos/tests/all-tests.nix')
-rw-r--r--nixos/tests/all-tests.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index fe67e245350..70103c4e6da 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -216,7 +216,7 @@ in
   switchTest = handleTest ./switch-test.nix {};
   syncthing-relay = handleTest ./syncthing-relay.nix {};
   systemd = handleTest ./systemd.nix {};
-  systemd-chroot = handleTest ./systemd-chroot.nix {};
+  systemd-confinement = handleTest ./systemd-confinement.nix {};
   taskserver = handleTest ./taskserver.nix {};
   telegraf = handleTest ./telegraf.nix {};
   tomcat = handleTest ./tomcat.nix {};