# Build a basic Fedora 16 AMI lang en_US.UTF-8 keyboard us timezone --utc Etc/UTC auth --useshadow --enablemd5 selinux --enforcing firewall --service=ssh bootloader --timeout=1 --location=mbr --driveorder=sda network --bootproto=dhcp --device=eth0 --onboot=on services --enabled=network,sshd,rsyslog # By default the root password is emptied # # Define how large you want your rootfs to be # part biosboot --fstype=biosboot --size=1 --ondisk sda part / --size 10000 --fstype ext4 --ondisk sda # # Repositories repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-18&arch=$basearch repo --name=fedora-updates --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f18&arch=$basearch # # # Add all the packages after the base packages # %packages --nobase @core system-config-securitylevel-tui audit pciutils bash coreutils kernel #grub grub2 #binutils e2fsprogs passwd policycoreutils chkconfig rootfiles yum vim-minimal acpid openssh-clients openssh-server curl links less sudo #Allow for dhcp access dhclient iputils -firstboot -biosdevname # package to setup cloudy bits for us cloud-init %end # more %post --erroronfail # create fedora /usr/sbin/useradd fedora sed -i -e 's/name: ec2-user/name: fedora/g' /etc/cloud/cloud.cfg cat < /etc/fstab LABEL=_/ / ext4 defaults 1 1 proc /proc proc defaults 0 0 sysfs /sys sysfs defaults 0 0 devpts /dev/pts devpts gid=5,mode=620 0 0 tmpfs /dev/shm tmpfs defaults 0 0 EOL # the firewall rules get saved as .old without this we end up not being able # ssh in as iptables blocks access rename .old "" /etc/sysconfig/*old # setup systemd to boot to the right runlevel rm /etc/systemd/system/default.target ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target # write to serial console sed -i -e 's/.*\/boot\/vmlinuz.*/\0 console=tty0 console=ttyS0/g' /boot/grub2/grub.cfg %end