├── .coveragerc ├── .gitignore ├── .travis.yml ├── ami_configs ├── bld-linux64.json ├── bld-linux64 │ ├── additional_packages │ ├── boot │ │ └── grub │ │ │ └── grub.conf │ ├── etc │ │ ├── fstab │ │ ├── hosts │ │ ├── init.d │ │ ├── rc.local │ │ ├── sysconfig │ │ └── yum-local.cfg │ ├── groupinstall │ ├── grub-install.diff │ └── grub.cmd ├── centos-65-x86_64-hvm-base.json ├── centos-65-x86_64-hvm-base │ ├── boot │ │ └── grub │ │ │ ├── device.map │ │ │ └── grub.conf │ ├── etc │ │ ├── fstab │ │ ├── hosts │ │ ├── init.d │ │ │ └── rc.local │ │ ├── rc.local │ │ ├── sysconfig │ │ │ ├── network │ │ │ └── network-scripts │ │ │ │ └── ifcfg-eth0 │ │ └── yum-local.cfg │ └── grub-install.diff ├── fake_puppet.conf ├── fake_puppet.sh ├── kill_chroot.sh ├── rbt-win64.json ├── rbt-win64.user_data ├── releng-public-precise.list ├── releng-public-trusty.list ├── releng-public.repo ├── s3-get ├── try-linux64 ├── try-linux64.json ├── tst-win64.json ├── tst-win64.user_data ├── ubuntu-12.04-i386-desktop.json ├── ubuntu-12.04-i386-desktop │ ├── etc │ ├── host_packages │ ├── packages │ └── usr ├── ubuntu-12.04-x86_64-desktop-hvm.json ├── ubuntu-12.04-x86_64-desktop-hvm │ ├── boot │ │ └── grub │ │ │ └── device.map │ ├── etc │ │ ├── default │ │ │ └── grub │ │ ├── fstab │ │ ├── hosts │ │ ├── network │ │ └── rc.local │ ├── host_packages │ ├── packages │ └── usr ├── ubuntu-12.04-x86_64-desktop.json ├── ubuntu-12.04-x86_64-desktop │ ├── etc │ │ ├── fstab │ │ ├── hosts │ │ ├── network │ │ │ └── interfaces │ │ └── rc.local │ ├── host_packages │ ├── packages │ └── usr │ │ └── sbin │ │ └── policy-rc.d ├── ubuntu-12.04-x86_64-server-hvm.json ├── ubuntu-12.04-x86_64-server-hvm │ ├── boot │ ├── etc │ │ ├── cloud │ │ │ └── cloud.cfg.d │ │ │ │ └── 99-apt-preserve-sources-list.cfg │ │ ├── default │ │ ├── fstab │ │ ├── hosts │ │ ├── network │ │ └── rc.local │ ├── host_packages │ ├── packages │ └── usr ├── ubuntu-14.04-i386-desktop.json ├── ubuntu-14.04-i386-desktop │ ├── etc │ │ ├── cloud │ │ │ └── cloud.cfg.d │ │ │ │ └── 99-apt-preserve-sources-list.cfg │ │ ├── fstab │ │ ├── hosts │ │ ├── network │ │ │ └── interfaces │ │ └── rc.local │ ├── host_packages │ ├── packages │ └── usr │ │ └── sbin │ │ └── policy-rc.d ├── ubuntu-14.04-x86_64-desktop-hvm.json ├── ubuntu-14.04-x86_64-desktop-hvm │ ├── etc │ │ ├── cloud │ │ │ └── cloud.cfg.d │ │ │ │ └── 99-apt-preserve-sources-list.cfg │ │ ├── fstab │ │ ├── hosts │ │ ├── network │ │ │ └── interfaces │ │ └── rc.local │ ├── host_packages │ ├── packages │ └── usr │ │ └── sbin │ │ └── policy-rc.d ├── ubuntu-14.04-x86_64-desktop.json ├── ubuntu-14.04-x86_64-desktop │ ├── etc │ │ ├── cloud │ │ │ └── cloud.cfg.d │ │ │ │ └── 99-apt-preserve-sources-list.cfg │ │ ├── fstab │ │ ├── hosts │ │ ├── network │ │ │ └── interfaces │ │ └── rc.local │ ├── host_packages │ ├── packages │ └── usr │ │ └── sbin │ │ └── policy-rc.d ├── ubuntu-14.04-x86_64-server-hvm.json ├── ubuntu-14.04-x86_64-server-hvm │ ├── etc │ │ ├── cloud │ │ │ └── cloud.cfg.d │ │ │ │ └── 99-apt-preserve-sources-list.cfg │ │ ├── fstab │ │ ├── hosts │ │ ├── network │ │ │ └── interfaces │ │ └── rc.local │ ├── host_packages │ ├── packages │ └── usr │ │ └── sbin │ │ └── policy-rc.d ├── ubuntu-14.04-x86_64-server.json └── ubuntu-14.04-x86_64-server │ ├── etc │ ├── cloud │ │ └── cloud.cfg.d │ │ │ └── 99-apt-preserve-sources-list.cfg │ ├── fstab │ ├── hosts │ ├── network │ │ └── interfaces │ └── rc.local │ ├── host_packages │ ├── packages │ └── usr │ └── sbin │ └── policy-rc.d ├── cloudtools ├── __init__.py ├── aws │ ├── __init__.py │ ├── ami.py │ ├── instance.py │ ├── sanity.py │ ├── spot.py │ └── vpc.py ├── buildbot.py ├── dns.py ├── fabric │ └── __init__.py ├── fileutils.py ├── graphite.py ├── log.py ├── scripts │ ├── __init__.py │ ├── aws_check_subnets.py │ ├── aws_clean_log_dir.py │ ├── aws_create_ami.py │ ├── aws_create_instance.py │ ├── aws_create_win_ami.py │ ├── aws_deploy_stack.py │ ├── aws_get_cloudtrail_logs.py │ ├── aws_manage_instances.py │ ├── aws_manage_routingtables.py │ ├── aws_manage_securitygroups.py │ ├── aws_manage_subnets.py │ ├── aws_manage_users.py │ ├── aws_process_cloudtrail_logs.py │ ├── aws_publish_amis.py │ ├── aws_sanity_checker.py │ ├── aws_stop_idle.py │ ├── aws_terminate_by_ami_id.py │ ├── aws_watch_pending.py │ ├── check_dns.py │ ├── copy_ami.py │ ├── delete_old_spot_amis.py │ ├── ec22ip.py │ ├── free_ips.py │ ├── get_spot_amis.py │ ├── spot_sanity_check.py │ └── tag_spot_instances.py ├── slavealloc.py ├── ssh.py ├── tests │ ├── test_cloudtools_aws.py │ ├── test_cloudtools_aws_instance.py │ ├── test_cloudtools_aws_spot.py │ ├── test_cloudtools_aws_vpc.py │ ├── test_cloudtools_dns.py │ ├── test_cloudtools_fabric.py │ ├── test_cloudtools_graphite.py │ ├── test_cloudtools_log.py │ ├── test_cloudtools_slavealloc.py │ ├── test_cloudtools_ssh.py │ ├── test_cloudtools_yaml.py │ └── test_scripts_aws_deploy_stack.py └── yaml.py ├── configs ├── Ec2UserdataUtils.psm1 ├── addonworker ├── addonworker.user-data ├── av-linux64 ├── av-linux64.user-data ├── b-2008 ├── b-2008.user-data ├── balrogworker ├── balrogworker.user-data ├── beetmoverworker ├── beetmoverworker.user-data ├── binarytransparencyworker ├── binarytransparencyworker.user-data ├── bld-linux64 ├── bld-linux64-s3 ├── bld-linux64.user-data ├── bouncerworker ├── bouncerworker.user-data ├── buildbot-master ├── buildbot-master.user-data ├── cloudformation │ ├── README.md │ ├── archiver.py │ ├── iam_relengapi.py │ ├── it.py │ ├── network.py │ ├── stacks.yml │ ├── tooltool.py │ └── utils.py ├── depsigning-worker ├── depsigning-worker.user-data ├── dev-linux64 ├── dev-linux64.user-data ├── g-w732 ├── g-w732.user-data ├── instance2ami.json ├── puppet-master ├── puppet-master.user-data ├── pushapkworker ├── pushapkworker.user-data ├── pushsnapworker ├── pushsnapworker.user-data ├── routingtables.yml ├── securitygroups.yml ├── server-linux64 ├── server-linux64.user-data ├── server-ubuntu64-trusty ├── server-ubuntu64-trusty-hvm ├── server-ubuntu64-trusty-hvm.user-data ├── server-ubuntu64-trusty.user-data ├── shipitworker ├── shipitworker.user-data ├── signingworker ├── signingworker.user-data ├── subnets.yml ├── t-w732 ├── t-w732.user-data ├── treescriptworker ├── treescriptworker.user-data ├── try-linux64 ├── try-linux64-s3 ├── try-linux64.user-data ├── tst-emulator64 ├── tst-emulator64.user-data ├── tst-linux32 ├── tst-linux32.user-data ├── tst-linux64 ├── tst-linux64-hvm ├── tst-linux64.user-data ├── tst-win64 ├── tst-win64.user_data ├── vcssync-linux64 ├── watch_pending.cfg ├── watch_pending.cfg.example ├── y-2008 └── y-2008.user-data ├── conftest.py ├── instance_data ├── instance_data_generic.json ├── us-east-1.instance_data_dev.json ├── us-east-1.instance_data_master.json ├── us-east-1.instance_data_prod.json ├── us-east-1.instance_data_server_linux64.json ├── us-east-1.instance_data_tests.json ├── us-east-1.instance_data_try.json ├── us-west-1.instance_data_server_linux64.json ├── us-west-2.instance_data_dev.json ├── us-west-2.instance_data_master.json ├── us-west-2.instance_data_prod.json ├── us-west-2.instance_data_server_linux64.json ├── us-west-2.instance_data_tests.json └── us-west-2.instance_data_try.json ├── packer ├── README.md ├── centos65-hvm-64-base.json └── src │ ├── boot │ └── grub │ │ ├── device.map │ │ └── grub.conf │ ├── etc │ ├── fstab │ ├── hosts │ ├── rc.d │ │ └── rc.local │ ├── sysconfig │ │ ├── network │ │ └── network-scripts │ │ │ └── ifcfg-eth0 │ └── yum-local.cfg │ ├── grub-install.diff │ └── install.sh ├── readme.md ├── scripts ├── setup.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /ami_configs/bld-linux64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/bld-linux64.json -------------------------------------------------------------------------------- /ami_configs/bld-linux64/additional_packages: -------------------------------------------------------------------------------- 1 | ../centos-62-x86_64-hvm-base/additional_packages -------------------------------------------------------------------------------- /ami_configs/bld-linux64/boot/grub/grub.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/bld-linux64/boot/grub/grub.conf -------------------------------------------------------------------------------- /ami_configs/bld-linux64/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/bld-linux64/etc/fstab -------------------------------------------------------------------------------- /ami_configs/bld-linux64/etc/hosts: -------------------------------------------------------------------------------- 1 | ../../centos-62-x86_64-hvm-base/etc/hosts -------------------------------------------------------------------------------- /ami_configs/bld-linux64/etc/init.d: -------------------------------------------------------------------------------- 1 | ../../centos-62-x86_64-hvm-base/etc/init.d -------------------------------------------------------------------------------- /ami_configs/bld-linux64/etc/rc.local: -------------------------------------------------------------------------------- 1 | ../../centos-62-x86_64-hvm-base/etc/rc.local -------------------------------------------------------------------------------- /ami_configs/bld-linux64/etc/sysconfig: -------------------------------------------------------------------------------- 1 | ../../centos-62-x86_64-hvm-base/etc/sysconfig -------------------------------------------------------------------------------- /ami_configs/bld-linux64/etc/yum-local.cfg: -------------------------------------------------------------------------------- 1 | ../../centos-62-x86_64-hvm-base/etc/yum-local.cfg -------------------------------------------------------------------------------- /ami_configs/bld-linux64/groupinstall: -------------------------------------------------------------------------------- 1 | ../centos-62-x86_64-hvm-base/groupinstall -------------------------------------------------------------------------------- /ami_configs/bld-linux64/grub-install.diff: -------------------------------------------------------------------------------- 1 | ../centos-62-x86_64-hvm-base/grub-install.diff -------------------------------------------------------------------------------- /ami_configs/bld-linux64/grub.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/bld-linux64/grub.cmd -------------------------------------------------------------------------------- /ami_configs/centos-65-x86_64-hvm-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/centos-65-x86_64-hvm-base.json -------------------------------------------------------------------------------- /ami_configs/centos-65-x86_64-hvm-base/boot/grub/device.map: -------------------------------------------------------------------------------- 1 | (hd0) /dev/xvdh 2 | -------------------------------------------------------------------------------- /ami_configs/centos-65-x86_64-hvm-base/boot/grub/grub.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/centos-65-x86_64-hvm-base/boot/grub/grub.conf -------------------------------------------------------------------------------- /ami_configs/centos-65-x86_64-hvm-base/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/centos-65-x86_64-hvm-base/etc/fstab -------------------------------------------------------------------------------- /ami_configs/centos-65-x86_64-hvm-base/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/centos-65-x86_64-hvm-base/etc/hosts -------------------------------------------------------------------------------- /ami_configs/centos-65-x86_64-hvm-base/etc/init.d/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/centos-65-x86_64-hvm-base/etc/init.d/rc.local -------------------------------------------------------------------------------- /ami_configs/centos-65-x86_64-hvm-base/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/centos-65-x86_64-hvm-base/etc/rc.local -------------------------------------------------------------------------------- /ami_configs/centos-65-x86_64-hvm-base/etc/sysconfig/network: -------------------------------------------------------------------------------- 1 | NETWORKING=yes 2 | -------------------------------------------------------------------------------- /ami_configs/centos-65-x86_64-hvm-base/etc/sysconfig/network-scripts/ifcfg-eth0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/centos-65-x86_64-hvm-base/etc/sysconfig/network-scripts/ifcfg-eth0 -------------------------------------------------------------------------------- /ami_configs/centos-65-x86_64-hvm-base/etc/yum-local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/centos-65-x86_64-hvm-base/etc/yum-local.cfg -------------------------------------------------------------------------------- /ami_configs/centos-65-x86_64-hvm-base/grub-install.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/centos-65-x86_64-hvm-base/grub-install.diff -------------------------------------------------------------------------------- /ami_configs/fake_puppet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/fake_puppet.conf -------------------------------------------------------------------------------- /ami_configs/fake_puppet.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | exit 0 3 | -------------------------------------------------------------------------------- /ami_configs/kill_chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/kill_chroot.sh -------------------------------------------------------------------------------- /ami_configs/rbt-win64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/rbt-win64.json -------------------------------------------------------------------------------- /ami_configs/rbt-win64.user_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/rbt-win64.user_data -------------------------------------------------------------------------------- /ami_configs/releng-public-precise.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/releng-public-precise.list -------------------------------------------------------------------------------- /ami_configs/releng-public-trusty.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/releng-public-trusty.list -------------------------------------------------------------------------------- /ami_configs/releng-public.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/releng-public.repo -------------------------------------------------------------------------------- /ami_configs/s3-get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/s3-get -------------------------------------------------------------------------------- /ami_configs/try-linux64: -------------------------------------------------------------------------------- 1 | bld-linux64 -------------------------------------------------------------------------------- /ami_configs/try-linux64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/try-linux64.json -------------------------------------------------------------------------------- /ami_configs/tst-win64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/tst-win64.json -------------------------------------------------------------------------------- /ami_configs/tst-win64.user_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/tst-win64.user_data -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-i386-desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-12.04-i386-desktop.json -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-i386-desktop/etc: -------------------------------------------------------------------------------- 1 | ../ubuntu-12.04-x86_64-desktop/etc -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-i386-desktop/host_packages: -------------------------------------------------------------------------------- 1 | debootstrap 2 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-i386-desktop/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-12.04-i386-desktop/packages -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-i386-desktop/usr: -------------------------------------------------------------------------------- 1 | ../ubuntu-12.04-x86_64-desktop/usr -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop-hvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-12.04-x86_64-desktop-hvm.json -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop-hvm/boot/grub/device.map: -------------------------------------------------------------------------------- 1 | (hd0) /dev/xvdh 2 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop-hvm/etc/default/grub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-12.04-x86_64-desktop-hvm/etc/default/grub -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop-hvm/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-12.04-x86_64-desktop-hvm/etc/fstab -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop-hvm/etc/hosts: -------------------------------------------------------------------------------- 1 | ../../centos-65-x86_64-hvm-base/etc/hosts -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop-hvm/etc/network: -------------------------------------------------------------------------------- 1 | ../../ubuntu-12.04-x86_64-desktop/etc/network -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop-hvm/etc/rc.local: -------------------------------------------------------------------------------- 1 | ../../centos-65-x86_64-hvm-base/etc/rc.local -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop-hvm/host_packages: -------------------------------------------------------------------------------- 1 | lvm2 2 | debootstrap 3 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop-hvm/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-12.04-x86_64-desktop-hvm/packages -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop-hvm/usr: -------------------------------------------------------------------------------- 1 | ../ubuntu-12.04-x86_64-desktop/usr -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-12.04-x86_64-desktop.json -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-12.04-x86_64-desktop/etc/fstab -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop/etc/hosts: -------------------------------------------------------------------------------- 1 | ../../centos-65-x86_64-hvm-base/etc/hosts -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-12.04-x86_64-desktop/etc/network/interfaces -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop/etc/rc.local: -------------------------------------------------------------------------------- 1 | ../../centos-65-x86_64-hvm-base/etc/rc.local -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop/host_packages: -------------------------------------------------------------------------------- 1 | debootstrap 2 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-12.04-x86_64-desktop/packages -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-desktop/usr/sbin/policy-rc.d: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # action forbidden by policy 3 | exit 101 4 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-server-hvm.json: -------------------------------------------------------------------------------- 1 | ubuntu-12.04-x86_64-desktop-hvm.json -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-server-hvm/boot: -------------------------------------------------------------------------------- 1 | ../ubuntu-12.04-x86_64-desktop-hvm/boot -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-server-hvm/etc/cloud/cloud.cfg.d/99-apt-preserve-sources-list.cfg: -------------------------------------------------------------------------------- 1 | apt_preserve_sources_list: True 2 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-server-hvm/etc/default: -------------------------------------------------------------------------------- 1 | ../../ubuntu-12.04-x86_64-desktop-hvm/etc/default -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-server-hvm/etc/fstab: -------------------------------------------------------------------------------- 1 | ../../ubuntu-12.04-x86_64-desktop-hvm/etc/fstab -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-server-hvm/etc/hosts: -------------------------------------------------------------------------------- 1 | ../../ubuntu-12.04-x86_64-desktop-hvm/etc/hosts -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-server-hvm/etc/network: -------------------------------------------------------------------------------- 1 | ../../ubuntu-12.04-x86_64-desktop-hvm/etc/network -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-server-hvm/etc/rc.local: -------------------------------------------------------------------------------- 1 | ../../ubuntu-12.04-x86_64-desktop-hvm/etc/rc.local -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-server-hvm/host_packages: -------------------------------------------------------------------------------- 1 | ../ubuntu-12.04-x86_64-desktop-hvm/host_packages -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-server-hvm/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-12.04-x86_64-server-hvm/packages -------------------------------------------------------------------------------- /ami_configs/ubuntu-12.04-x86_64-server-hvm/usr: -------------------------------------------------------------------------------- 1 | ../ubuntu-12.04-x86_64-desktop-hvm/usr -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-i386-desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-i386-desktop.json -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-i386-desktop/etc/cloud/cloud.cfg.d/99-apt-preserve-sources-list.cfg: -------------------------------------------------------------------------------- 1 | apt_preserve_sources_list: True 2 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-i386-desktop/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-i386-desktop/etc/fstab -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-i386-desktop/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-i386-desktop/etc/hosts -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-i386-desktop/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-i386-desktop/etc/network/interfaces -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-i386-desktop/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-i386-desktop/etc/rc.local -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-i386-desktop/host_packages: -------------------------------------------------------------------------------- 1 | debootstrap 2 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-i386-desktop/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-i386-desktop/packages -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-i386-desktop/usr/sbin/policy-rc.d: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # action forbidden by policy 3 | exit 101 4 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop-hvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-desktop-hvm.json -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop-hvm/etc/cloud/cloud.cfg.d/99-apt-preserve-sources-list.cfg: -------------------------------------------------------------------------------- 1 | apt_preserve_sources_list: True 2 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop-hvm/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-desktop-hvm/etc/fstab -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop-hvm/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-desktop-hvm/etc/hosts -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop-hvm/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-desktop-hvm/etc/network/interfaces -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop-hvm/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-desktop-hvm/etc/rc.local -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop-hvm/host_packages: -------------------------------------------------------------------------------- 1 | lvm2 2 | debootstrap 3 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop-hvm/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-desktop-hvm/packages -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop-hvm/usr/sbin/policy-rc.d: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # action forbidden by policy 3 | exit 101 4 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-desktop.json -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop/etc/cloud/cloud.cfg.d/99-apt-preserve-sources-list.cfg: -------------------------------------------------------------------------------- 1 | apt_preserve_sources_list: True 2 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-desktop/etc/fstab -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-desktop/etc/hosts -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-desktop/etc/network/interfaces -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-desktop/etc/rc.local -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop/host_packages: -------------------------------------------------------------------------------- 1 | debootstrap 2 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-desktop/packages -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-desktop/usr/sbin/policy-rc.d: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # action forbidden by policy 3 | exit 101 4 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server-hvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-server-hvm.json -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server-hvm/etc/cloud/cloud.cfg.d/99-apt-preserve-sources-list.cfg: -------------------------------------------------------------------------------- 1 | apt_preserve_sources_list: True 2 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server-hvm/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-server-hvm/etc/fstab -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server-hvm/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-server-hvm/etc/hosts -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server-hvm/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-server-hvm/etc/network/interfaces -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server-hvm/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-server-hvm/etc/rc.local -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server-hvm/host_packages: -------------------------------------------------------------------------------- 1 | lvm2 2 | debootstrap 3 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server-hvm/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-server-hvm/packages -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server-hvm/usr/sbin/policy-rc.d: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # action forbidden by policy 3 | exit 101 4 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-server.json -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server/etc/cloud/cloud.cfg.d/99-apt-preserve-sources-list.cfg: -------------------------------------------------------------------------------- 1 | apt_preserve_sources_list: True 2 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-server/etc/fstab -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-server/etc/hosts -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-server/etc/network/interfaces -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-server/etc/rc.local -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server/host_packages: -------------------------------------------------------------------------------- 1 | debootstrap 2 | -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/ami_configs/ubuntu-14.04-x86_64-server/packages -------------------------------------------------------------------------------- /ami_configs/ubuntu-14.04-x86_64-server/usr/sbin/policy-rc.d: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # action forbidden by policy 3 | exit 101 4 | -------------------------------------------------------------------------------- /cloudtools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudtools/aws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/aws/__init__.py -------------------------------------------------------------------------------- /cloudtools/aws/ami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/aws/ami.py -------------------------------------------------------------------------------- /cloudtools/aws/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/aws/instance.py -------------------------------------------------------------------------------- /cloudtools/aws/sanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/aws/sanity.py -------------------------------------------------------------------------------- /cloudtools/aws/spot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/aws/spot.py -------------------------------------------------------------------------------- /cloudtools/aws/vpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/aws/vpc.py -------------------------------------------------------------------------------- /cloudtools/buildbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/buildbot.py -------------------------------------------------------------------------------- /cloudtools/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/dns.py -------------------------------------------------------------------------------- /cloudtools/fabric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/fabric/__init__.py -------------------------------------------------------------------------------- /cloudtools/fileutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/fileutils.py -------------------------------------------------------------------------------- /cloudtools/graphite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/graphite.py -------------------------------------------------------------------------------- /cloudtools/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/log.py -------------------------------------------------------------------------------- /cloudtools/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudtools/scripts/aws_check_subnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_check_subnets.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_clean_log_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_clean_log_dir.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_create_ami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_create_ami.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_create_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_create_instance.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_create_win_ami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_create_win_ami.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_deploy_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_deploy_stack.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_get_cloudtrail_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_get_cloudtrail_logs.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_manage_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_manage_instances.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_manage_routingtables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_manage_routingtables.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_manage_securitygroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_manage_securitygroups.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_manage_subnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_manage_subnets.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_manage_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_manage_users.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_process_cloudtrail_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_process_cloudtrail_logs.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_publish_amis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_publish_amis.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_sanity_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_sanity_checker.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_stop_idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_stop_idle.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_terminate_by_ami_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_terminate_by_ami_id.py -------------------------------------------------------------------------------- /cloudtools/scripts/aws_watch_pending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/aws_watch_pending.py -------------------------------------------------------------------------------- /cloudtools/scripts/check_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/check_dns.py -------------------------------------------------------------------------------- /cloudtools/scripts/copy_ami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/copy_ami.py -------------------------------------------------------------------------------- /cloudtools/scripts/delete_old_spot_amis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/delete_old_spot_amis.py -------------------------------------------------------------------------------- /cloudtools/scripts/ec22ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/ec22ip.py -------------------------------------------------------------------------------- /cloudtools/scripts/free_ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/free_ips.py -------------------------------------------------------------------------------- /cloudtools/scripts/get_spot_amis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/get_spot_amis.py -------------------------------------------------------------------------------- /cloudtools/scripts/spot_sanity_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/spot_sanity_check.py -------------------------------------------------------------------------------- /cloudtools/scripts/tag_spot_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/scripts/tag_spot_instances.py -------------------------------------------------------------------------------- /cloudtools/slavealloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/slavealloc.py -------------------------------------------------------------------------------- /cloudtools/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/ssh.py -------------------------------------------------------------------------------- /cloudtools/tests/test_cloudtools_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/tests/test_cloudtools_aws.py -------------------------------------------------------------------------------- /cloudtools/tests/test_cloudtools_aws_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/tests/test_cloudtools_aws_instance.py -------------------------------------------------------------------------------- /cloudtools/tests/test_cloudtools_aws_spot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/tests/test_cloudtools_aws_spot.py -------------------------------------------------------------------------------- /cloudtools/tests/test_cloudtools_aws_vpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/tests/test_cloudtools_aws_vpc.py -------------------------------------------------------------------------------- /cloudtools/tests/test_cloudtools_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/tests/test_cloudtools_dns.py -------------------------------------------------------------------------------- /cloudtools/tests/test_cloudtools_fabric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/tests/test_cloudtools_fabric.py -------------------------------------------------------------------------------- /cloudtools/tests/test_cloudtools_graphite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/tests/test_cloudtools_graphite.py -------------------------------------------------------------------------------- /cloudtools/tests/test_cloudtools_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/tests/test_cloudtools_log.py -------------------------------------------------------------------------------- /cloudtools/tests/test_cloudtools_slavealloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/tests/test_cloudtools_slavealloc.py -------------------------------------------------------------------------------- /cloudtools/tests/test_cloudtools_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/tests/test_cloudtools_ssh.py -------------------------------------------------------------------------------- /cloudtools/tests/test_cloudtools_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/tests/test_cloudtools_yaml.py -------------------------------------------------------------------------------- /cloudtools/tests/test_scripts_aws_deploy_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/tests/test_scripts_aws_deploy_stack.py -------------------------------------------------------------------------------- /cloudtools/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/cloudtools/yaml.py -------------------------------------------------------------------------------- /configs/Ec2UserdataUtils.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/Ec2UserdataUtils.psm1 -------------------------------------------------------------------------------- /configs/addonworker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/addonworker -------------------------------------------------------------------------------- /configs/addonworker.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/addonworker.user-data -------------------------------------------------------------------------------- /configs/av-linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/av-linux64 -------------------------------------------------------------------------------- /configs/av-linux64.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/av-linux64.user-data -------------------------------------------------------------------------------- /configs/b-2008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/b-2008 -------------------------------------------------------------------------------- /configs/b-2008.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/b-2008.user-data -------------------------------------------------------------------------------- /configs/balrogworker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/balrogworker -------------------------------------------------------------------------------- /configs/balrogworker.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/balrogworker.user-data -------------------------------------------------------------------------------- /configs/beetmoverworker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/beetmoverworker -------------------------------------------------------------------------------- /configs/beetmoverworker.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/beetmoverworker.user-data -------------------------------------------------------------------------------- /configs/binarytransparencyworker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/binarytransparencyworker -------------------------------------------------------------------------------- /configs/binarytransparencyworker.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/binarytransparencyworker.user-data -------------------------------------------------------------------------------- /configs/bld-linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/bld-linux64 -------------------------------------------------------------------------------- /configs/bld-linux64-s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/bld-linux64-s3 -------------------------------------------------------------------------------- /configs/bld-linux64.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/bld-linux64.user-data -------------------------------------------------------------------------------- /configs/bouncerworker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/bouncerworker -------------------------------------------------------------------------------- /configs/bouncerworker.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/bouncerworker.user-data -------------------------------------------------------------------------------- /configs/buildbot-master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/buildbot-master -------------------------------------------------------------------------------- /configs/buildbot-master.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/buildbot-master.user-data -------------------------------------------------------------------------------- /configs/cloudformation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/cloudformation/README.md -------------------------------------------------------------------------------- /configs/cloudformation/archiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/cloudformation/archiver.py -------------------------------------------------------------------------------- /configs/cloudformation/iam_relengapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/cloudformation/iam_relengapi.py -------------------------------------------------------------------------------- /configs/cloudformation/it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/cloudformation/it.py -------------------------------------------------------------------------------- /configs/cloudformation/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/cloudformation/network.py -------------------------------------------------------------------------------- /configs/cloudformation/stacks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/cloudformation/stacks.yml -------------------------------------------------------------------------------- /configs/cloudformation/tooltool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/cloudformation/tooltool.py -------------------------------------------------------------------------------- /configs/cloudformation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/cloudformation/utils.py -------------------------------------------------------------------------------- /configs/depsigning-worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/depsigning-worker -------------------------------------------------------------------------------- /configs/depsigning-worker.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/depsigning-worker.user-data -------------------------------------------------------------------------------- /configs/dev-linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/dev-linux64 -------------------------------------------------------------------------------- /configs/dev-linux64.user-data: -------------------------------------------------------------------------------- 1 | bld-linux64.user-data -------------------------------------------------------------------------------- /configs/g-w732: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/g-w732 -------------------------------------------------------------------------------- /configs/g-w732.user-data: -------------------------------------------------------------------------------- 1 | t-w732.user-data -------------------------------------------------------------------------------- /configs/instance2ami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/instance2ami.json -------------------------------------------------------------------------------- /configs/puppet-master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/puppet-master -------------------------------------------------------------------------------- /configs/puppet-master.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/puppet-master.user-data -------------------------------------------------------------------------------- /configs/pushapkworker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/pushapkworker -------------------------------------------------------------------------------- /configs/pushapkworker.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/pushapkworker.user-data -------------------------------------------------------------------------------- /configs/pushsnapworker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/pushsnapworker -------------------------------------------------------------------------------- /configs/pushsnapworker.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/pushsnapworker.user-data -------------------------------------------------------------------------------- /configs/routingtables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/routingtables.yml -------------------------------------------------------------------------------- /configs/securitygroups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/securitygroups.yml -------------------------------------------------------------------------------- /configs/server-linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/server-linux64 -------------------------------------------------------------------------------- /configs/server-linux64.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/server-linux64.user-data -------------------------------------------------------------------------------- /configs/server-ubuntu64-trusty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/server-ubuntu64-trusty -------------------------------------------------------------------------------- /configs/server-ubuntu64-trusty-hvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/server-ubuntu64-trusty-hvm -------------------------------------------------------------------------------- /configs/server-ubuntu64-trusty-hvm.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/server-ubuntu64-trusty-hvm.user-data -------------------------------------------------------------------------------- /configs/server-ubuntu64-trusty.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/server-ubuntu64-trusty.user-data -------------------------------------------------------------------------------- /configs/shipitworker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/shipitworker -------------------------------------------------------------------------------- /configs/shipitworker.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/shipitworker.user-data -------------------------------------------------------------------------------- /configs/signingworker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/signingworker -------------------------------------------------------------------------------- /configs/signingworker.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/signingworker.user-data -------------------------------------------------------------------------------- /configs/subnets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/subnets.yml -------------------------------------------------------------------------------- /configs/t-w732: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/t-w732 -------------------------------------------------------------------------------- /configs/t-w732.user-data: -------------------------------------------------------------------------------- 1 | b-2008.user-data -------------------------------------------------------------------------------- /configs/treescriptworker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/treescriptworker -------------------------------------------------------------------------------- /configs/treescriptworker.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/treescriptworker.user-data -------------------------------------------------------------------------------- /configs/try-linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/try-linux64 -------------------------------------------------------------------------------- /configs/try-linux64-s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/try-linux64-s3 -------------------------------------------------------------------------------- /configs/try-linux64.user-data: -------------------------------------------------------------------------------- 1 | bld-linux64.user-data -------------------------------------------------------------------------------- /configs/tst-emulator64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/tst-emulator64 -------------------------------------------------------------------------------- /configs/tst-emulator64.user-data: -------------------------------------------------------------------------------- 1 | tst-linux64.user-data -------------------------------------------------------------------------------- /configs/tst-linux32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/tst-linux32 -------------------------------------------------------------------------------- /configs/tst-linux32.user-data: -------------------------------------------------------------------------------- 1 | tst-linux64.user-data -------------------------------------------------------------------------------- /configs/tst-linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/tst-linux64 -------------------------------------------------------------------------------- /configs/tst-linux64-hvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/tst-linux64-hvm -------------------------------------------------------------------------------- /configs/tst-linux64.user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/tst-linux64.user-data -------------------------------------------------------------------------------- /configs/tst-win64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/tst-win64 -------------------------------------------------------------------------------- /configs/tst-win64.user_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/tst-win64.user_data -------------------------------------------------------------------------------- /configs/vcssync-linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/vcssync-linux64 -------------------------------------------------------------------------------- /configs/watch_pending.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/watch_pending.cfg -------------------------------------------------------------------------------- /configs/watch_pending.cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/watch_pending.cfg.example -------------------------------------------------------------------------------- /configs/y-2008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/configs/y-2008 -------------------------------------------------------------------------------- /configs/y-2008.user-data: -------------------------------------------------------------------------------- 1 | b-2008.user-data -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- 1 | collect_ignore = ["setup.py", "configs/cloudformation"] 2 | -------------------------------------------------------------------------------- /instance_data/instance_data_generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/instance_data/instance_data_generic.json -------------------------------------------------------------------------------- /instance_data/us-east-1.instance_data_dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/instance_data/us-east-1.instance_data_dev.json -------------------------------------------------------------------------------- /instance_data/us-east-1.instance_data_master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/instance_data/us-east-1.instance_data_master.json -------------------------------------------------------------------------------- /instance_data/us-east-1.instance_data_prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/instance_data/us-east-1.instance_data_prod.json -------------------------------------------------------------------------------- /instance_data/us-east-1.instance_data_server_linux64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/instance_data/us-east-1.instance_data_server_linux64.json -------------------------------------------------------------------------------- /instance_data/us-east-1.instance_data_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/instance_data/us-east-1.instance_data_tests.json -------------------------------------------------------------------------------- /instance_data/us-east-1.instance_data_try.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/instance_data/us-east-1.instance_data_try.json -------------------------------------------------------------------------------- /instance_data/us-west-1.instance_data_server_linux64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/instance_data/us-west-1.instance_data_server_linux64.json -------------------------------------------------------------------------------- /instance_data/us-west-2.instance_data_dev.json: -------------------------------------------------------------------------------- 1 | us-east-1.instance_data_dev.json -------------------------------------------------------------------------------- /instance_data/us-west-2.instance_data_master.json: -------------------------------------------------------------------------------- 1 | us-east-1.instance_data_master.json -------------------------------------------------------------------------------- /instance_data/us-west-2.instance_data_prod.json: -------------------------------------------------------------------------------- 1 | us-east-1.instance_data_prod.json -------------------------------------------------------------------------------- /instance_data/us-west-2.instance_data_server_linux64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/instance_data/us-west-2.instance_data_server_linux64.json -------------------------------------------------------------------------------- /instance_data/us-west-2.instance_data_tests.json: -------------------------------------------------------------------------------- 1 | us-east-1.instance_data_tests.json -------------------------------------------------------------------------------- /instance_data/us-west-2.instance_data_try.json: -------------------------------------------------------------------------------- 1 | us-east-1.instance_data_try.json -------------------------------------------------------------------------------- /packer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/packer/README.md -------------------------------------------------------------------------------- /packer/centos65-hvm-64-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/packer/centos65-hvm-64-base.json -------------------------------------------------------------------------------- /packer/src/boot/grub/device.map: -------------------------------------------------------------------------------- 1 | (hd0) /dev/xvdf 2 | -------------------------------------------------------------------------------- /packer/src/boot/grub/grub.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/packer/src/boot/grub/grub.conf -------------------------------------------------------------------------------- /packer/src/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/packer/src/etc/fstab -------------------------------------------------------------------------------- /packer/src/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/packer/src/etc/hosts -------------------------------------------------------------------------------- /packer/src/etc/rc.d/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/packer/src/etc/rc.d/rc.local -------------------------------------------------------------------------------- /packer/src/etc/sysconfig/network: -------------------------------------------------------------------------------- 1 | NETWORKING=yes 2 | -------------------------------------------------------------------------------- /packer/src/etc/sysconfig/network-scripts/ifcfg-eth0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/packer/src/etc/sysconfig/network-scripts/ifcfg-eth0 -------------------------------------------------------------------------------- /packer/src/etc/yum-local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/packer/src/etc/yum-local.cfg -------------------------------------------------------------------------------- /packer/src/grub-install.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/packer/src/grub-install.diff -------------------------------------------------------------------------------- /packer/src/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/packer/src/install.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/readme.md -------------------------------------------------------------------------------- /scripts: -------------------------------------------------------------------------------- 1 | cloudtools/scripts/ -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-releng/build-cloud-tools/HEAD/tox.ini --------------------------------------------------------------------------------