diff --git a/buildscripts/makealldists.py b/buildscripts/makealldists.py index 2e087f7f46c..10005a2d369 100644 --- a/buildscripts/makealldists.py +++ b/buildscripts/makealldists.py @@ -192,7 +192,8 @@ def __main__(): ("debian", "5.0"), ("centos", "5.4"), ("fedora", "12"), - ("fedora", "13")) + ("fedora", "13"), + ("fedora", "14")) arches = ("x86", "x86_64") # mongos = branches.split(',') # Run a makedist for each distro/version/architecture tuple above. diff --git a/buildscripts/makedist.py b/buildscripts/makedist.py index 1b336d0e346..92dc57ee38d 100644 --- a/buildscripts/makedist.py +++ b/buildscripts/makedist.py @@ -125,7 +125,6 @@ class EC2InstanceConfigurator(BaseConfigurator): self.configuration += [("ec2_ami", ((("ubuntu", "10.10", "x86_64"), "ami-688c7801"), (("ubuntu", "10.10", "x86"), "ami-1a837773"), - (("ubuntu", "10.10", "x86"), "ami-508c7839"), (("ubuntu", "10.4", "x86_64"), "ami-bf07ead6"), (("ubuntu", "10.4", "x86"), "ami-f707ea9e"), (("ubuntu", "9.10", "x86_64"), "ami-55739e3c"), @@ -143,9 +142,9 @@ class EC2InstanceConfigurator(BaseConfigurator): (("fedora", "8", "x86_64"), "ami-2547a34c"), (("fedora", "8", "x86"), "ami-5647a33f"))), ("rackspace_imgname", - ((("fedora", "11", "x86_64"), "Fedora 11"), - (("fedora", "12", "x86_64"), "Fedora 12"), - (("fedora", "13", "x86_64"), "Fedora 13"))), + ((("fedora", "12", "x86_64"), "Fedora 12"), + (("fedora", "13", "x86_64"), "Fedora 13") + (("fedora", "14", "x86_64"), "Fedora 14"))), ("ec2_mtype", ((("*", "*", "x86"), "m1.small"), (("*", "*", "x86_64"), "m1.large"))),