summaryrefslogtreecommitdiffstats
path: root/nixos/tests
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-01-05 08:25:53 +0000
committerAlyssa Ross <hi@alyssa.is>2021-01-05 09:09:42 +0000
commit6c3d21aff953a2f61086fa9dfd22ccaa919910f0 (patch)
tree786356c478b790155c9140be27b2624dd1a218d7 /nixos/tests
parent9a27606ab1781a01a75f7c2d519fd6ee2b4b867c (diff)
nixos/getty: rename from services.mingetty
It's been 8.5 years since NixOS used mingetty, but the option was never renamed (despite the file definining the module being renamed in 9f5051b76c1 ("Rename mingetty module to agetty")). I've chosen to rename it to services.getty here, rather than services.agetty, because getty is implemantation-neutral and also the name of the unit that is generated.
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/login.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/login.nix b/nixos/tests/login.nix
index d36c1a91be43..ce11e1f942ab 100644
--- a/nixos/tests/login.nix
+++ b/nixos/tests/login.nix
@@ -50,7 +50,7 @@ import ./make-test-python.nix ({ pkgs, latestKernel ? false, ... }:
with subtest("Virtual console logout"):
machine.send_chars("exit\n")
machine.wait_until_fails("pgrep -u alice bash")
- machine.screenshot("mingetty")
+ machine.screenshot("getty")
with subtest("Check whether ctrl-alt-delete works"):
machine.send_key("ctrl-alt-delete")