summary refs log tree commit diff
path: root/nixos/tests/logrotate.nix
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2022-02-28 10:19:25 +0100
committerGitHub <noreply@github.com>2022-02-28 10:19:25 +0100
commitd32ba3f4b0c88533e745649d73b4b28039885dc2 (patch)
tree1d0057394aab2ecb2200df6db0d9e6c166eda605 /nixos/tests/logrotate.nix
parentef8c2381d71b81c8586dc59ca57f1d45444d3f19 (diff)
parent8022c82a39c19bd1fe000884703601532204b82f (diff)
downloadnixpkgs-d32ba3f4b0c88533e745649d73b4b28039885dc2.tar
nixpkgs-d32ba3f4b0c88533e745649d73b4b28039885dc2.tar.gz
nixpkgs-d32ba3f4b0c88533e745649d73b4b28039885dc2.tar.bz2
nixpkgs-d32ba3f4b0c88533e745649d73b4b28039885dc2.tar.lz
nixpkgs-d32ba3f4b0c88533e745649d73b4b28039885dc2.tar.xz
nixpkgs-d32ba3f4b0c88533e745649d73b4b28039885dc2.tar.zst
nixpkgs-d32ba3f4b0c88533e745649d73b4b28039885dc2.zip
Merge pull request #161929 from martinetd/switchTest
logrotate: do not enable logrotate.service itself
Diffstat (limited to 'nixos/tests/logrotate.nix')
-rw-r--r--nixos/tests/logrotate.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/nixos/tests/logrotate.nix b/nixos/tests/logrotate.nix
index 5a724d9d6e9..38da8d53527 100644
--- a/nixos/tests/logrotate.nix
+++ b/nixos/tests/logrotate.nix
@@ -15,20 +15,21 @@ import ./make-test-python.nix ({ pkgs, ...} : rec {
       with subtest("whether logrotate works"):
           machine.succeed(
               # we must rotate once first to create logrotate stamp
-              "systemctl start --wait logrotate.service",
+              "systemctl start logrotate.service")
+          # we need to wait for console text once here to
+          # clear console buffer up to this point for next wait
+          machine.wait_for_console_text('logrotate.service: Deactivated successfully')
 
+          machine.succeed(
               # wtmp is present in default config.
               "rm -f /var/log/wtmp*",
               # we need to give it at least 1MB
               "dd if=/dev/zero of=/var/log/wtmp bs=2M count=1",
 
-              # move into the future and rotate
-              "date -s 'now + 1 month + 1 day'",
-              # systemd will run logrotate from logrotate.timer automatically
-              # on date change, but if we want to wait for it to terminate
-              # it's easier to run again...
-              "systemctl start --wait logrotate.service",
-
+              # move into the future and check rotation.
+              "date -s 'now + 1 month + 1 day'")
+          machine.wait_for_console_text('logrotate.service: Deactivated successfully')
+          machine.succeed(
               # check rotate worked
               "[ -e /var/log/wtmp.1 ]",
           )