Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
737 B
Nix
35 lines
737 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
name = "atd";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ bjornfor ];
|
|
};
|
|
|
|
nodes.machine =
|
|
{ ... }:
|
|
{
|
|
services.atd.enable = true;
|
|
users.users.alice = {
|
|
isNormalUser = true;
|
|
};
|
|
};
|
|
|
|
# "at" has a resolution of 1 minute
|
|
testScript = ''
|
|
start_all()
|
|
|
|
machine.wait_for_unit("atd.service") # wait for atd to start
|
|
machine.fail("test -f ~root/at-1")
|
|
machine.fail("test -f ~alice/at-1")
|
|
|
|
machine.succeed("echo 'touch ~root/at-1' | at now+1min")
|
|
machine.succeed("su - alice -c \"echo 'touch at-1' | at now+1min\"")
|
|
|
|
machine.succeed("sleep 1.5m")
|
|
|
|
machine.succeed("test -f ~root/at-1")
|
|
machine.succeed("test -f ~alice/at-1")
|
|
'';
|
|
}
|