41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
# This test verifies that the amazon-init service can treat the `user-data` ec2
|
|
# metadata file as a shell script. If amazon-init detects that `user-data` is a
|
|
# script (based on the presence of the shebang #! line) it executes it and
|
|
# exits.
|
|
# Note that other tests verify that amazon-init can treat user-data as a nixos
|
|
# configuration expression.
|
|
|
|
{ system ? builtins.currentSystem,
|
|
config ? {},
|
|
pkgs ? import ../.. { inherit system config; }
|
|
}:
|
|
|
|
with import ../lib/testing-python.nix { inherit system pkgs; };
|
|
with pkgs.lib;
|
|
|
|
makeTest {
|
|
name = "amazon-init";
|
|
meta = with maintainers; {
|
|
maintainers = [ urbas ];
|
|
};
|
|
machine = { ... }:
|
|
{
|
|
imports = [ ../modules/profiles/headless.nix ../modules/virtualisation/amazon-init.nix ];
|
|
services.openssh.enable = true;
|
|
networking.hostName = "";
|
|
environment.etc."ec2-metadata/user-data" = {
|
|
text = ''
|
|
#!/usr/bin/bash
|
|
|
|
echo successful > /tmp/evidence
|
|
'';
|
|
};
|
|
};
|
|
testScript = ''
|
|
# To wait until amazon-init terminates its run
|
|
unnamed.wait_for_unit("amazon-init.service")
|
|
|
|
unnamed.succeed("grep -q successful /tmp/evidence")
|
|
'';
|
|
}
|