├── Makefile ├── README └── src └── root ├── etc ├── apt │ └── sources.list ├── fstab ├── grub.d │ └── 40_custom ├── hosts ├── network │ └── interfaces ├── rc.local └── ssh │ └── sshd_config └── usr └── local └── bin ├── ec2-get-credentials ├── ec2-mkdir-tmp ├── ec2-run-user-data └── ec2-ssh-host-key-gen /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/README -------------------------------------------------------------------------------- /src/root/etc/apt/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/src/root/etc/apt/sources.list -------------------------------------------------------------------------------- /src/root/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/src/root/etc/fstab -------------------------------------------------------------------------------- /src/root/etc/grub.d/40_custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/src/root/etc/grub.d/40_custom -------------------------------------------------------------------------------- /src/root/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/src/root/etc/hosts -------------------------------------------------------------------------------- /src/root/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/src/root/etc/network/interfaces -------------------------------------------------------------------------------- /src/root/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/src/root/etc/rc.local -------------------------------------------------------------------------------- /src/root/etc/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/src/root/etc/ssh/sshd_config -------------------------------------------------------------------------------- /src/root/usr/local/bin/ec2-get-credentials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/src/root/usr/local/bin/ec2-get-credentials -------------------------------------------------------------------------------- /src/root/usr/local/bin/ec2-mkdir-tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/src/root/usr/local/bin/ec2-mkdir-tmp -------------------------------------------------------------------------------- /src/root/usr/local/bin/ec2-run-user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/src/root/usr/local/bin/ec2-run-user-data -------------------------------------------------------------------------------- /src/root/usr/local/bin/ec2-ssh-host-key-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomheady/ec2debian/HEAD/src/root/usr/local/bin/ec2-ssh-host-key-gen --------------------------------------------------------------------------------