for consistency use bob in tests instead of joe
This commit is contained in:
parent
5a6853b3bf
commit
4e13c1f958
2 changed files with 4 additions and 4 deletions
|
@ -13,7 +13,7 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
|
||||||
webHost = "localhost";
|
webHost = "localhost";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
listMasters = [ "joe@example.org" ];
|
listMasters = [ "bob@example.org" ];
|
||||||
web.enable = true;
|
web.enable = true;
|
||||||
web.https = false;
|
web.https = false;
|
||||||
database = {
|
database = {
|
||||||
|
|
|
@ -10,8 +10,8 @@ let
|
||||||
Key-Length: 1024
|
Key-Length: 1024
|
||||||
Subkey-Type: ELG-E
|
Subkey-Type: ELG-E
|
||||||
Subkey-Length: 1024
|
Subkey-Length: 1024
|
||||||
Name-Real: Joe Tester
|
Name-Real: Bob Foobar
|
||||||
Name-Email: joe@foo.bar
|
Name-Email: bob@foo.bar
|
||||||
Expire-Date: 0
|
Expire-Date: 0
|
||||||
# Do a commit here, so that we can later print "done"
|
# Do a commit here, so that we can later print "done"
|
||||||
%commit
|
%commit
|
||||||
|
@ -19,7 +19,7 @@ let
|
||||||
EOF
|
EOF
|
||||||
gpg --batch --generate-key foo
|
gpg --batch --generate-key foo
|
||||||
rm $out/S.gpg-agent $out/S.gpg-agent.*
|
rm $out/S.gpg-agent $out/S.gpg-agent.*
|
||||||
gpg --export joe@foo.bar -a > $out/pubkey.gpg
|
gpg --export bob@foo.bar -a > $out/pubkey.gpg
|
||||||
'');
|
'');
|
||||||
|
|
||||||
nspawnImages = (pkgs.runCommand "localhost" { buildInputs = [ pkgs.coreutils pkgs.gnupg ]; } ''
|
nspawnImages = (pkgs.runCommand "localhost" { buildInputs = [ pkgs.coreutils pkgs.gnupg ]; } ''
|
||||||
|
|
Loading…
Reference in a new issue