* Add a 32-bit AMI that finally seems to boot reliably.

svn path=/nixos/trunk/; revision=33034
This commit is contained in:
Eelco Dolstra 2012-03-13 15:03:41 +00:00
parent dd6eb81797
commit db0e7787ce

View file

@ -202,6 +202,7 @@ let cfg = config.deployment; in
# $ while read system region ami; do echo " if cfg.ec2.region == \"$region\" && config.nixpkgs.system == \"$system\" then \"$ami\" else"; done < amis
ami = mkDefault (
if cfg.ec2.region == "eu-west-1" && config.nixpkgs.system == "x86_64-linux" then "ami-65dae711" else
if cfg.ec2.region == "eu-west-1" && config.nixpkgs.system == "i686-linux" then "ami-dd90a9a9" else
if cfg.ec2.region == "us-east-1" && config.nixpkgs.system == "x86_64-linux" then "ami-95bb72fc" else
if cfg.ec2.region == "us-west-1" && config.nixpkgs.system == "x86_64-linux" then "ami-0b0c534e" else
# !!! Doesn't work, not lazy enough.