#!/bin/bash -e apt-get update install -m 755 files/resize2fs_once "${ROOTFS_DIR}/etc/init.d/" install -d "${ROOTFS_DIR}/etc/systemd/system/rc-local.service.d" install -m 644 files/ttyoutput.conf "${ROOTFS_DIR}/etc/systemd/system/rc-local.service.d/" install -m 644 files/50raspi "${ROOTFS_DIR}/etc/apt/apt.conf.d/" install -m 644 files/console-setup "${ROOTFS_DIR}/etc/default/" install -m 755 files/rc.local "${ROOTFS_DIR}/etc/" on_chroot << EOF systemctl disable hwclock.sh systemctl disable nfs-common systemctl disable rpcbind if [ "${ENABLE_SSH}" == "1" ]; then systemctl enable ssh else systemctl disable ssh fi systemctl enable regenerate_ssh_host_keys EOF if [ ! -d $ROOTFS_DIR/home/statuses ]; then echo "Making a directory called 'statuses' for storing statuses of services" mkdir $ROOTFS_DIR/home/statuses fi if [ ! -z ${GITHUB_USERNAME} ]; then echo "Setting up authorized_keys file" mkdir -p $ROOTFS_DIR/home/$FIRST_USER_NAME cd $ROOTFS_DIR/home/$FIRST_USER_NAME echo "Making .ssh directory" mkdir -p .ssh cd .ssh echo "Fetching from github the ssh keys" curl "https://github.com/${GITHUB_USERNAME}.keys" > authorized_keys fi if [ "${USE_QEMU}" = "1" ]; then echo "enter QEMU mode" install -m 644 files/90-qemu.rules "${ROOTFS_DIR}/etc/udev/rules.d/" on_chroot << EOF systemctl disable resize2fs_once EOF echo "leaving QEMU mode" else on_chroot << EOF systemctl enable resize2fs_once EOF fi on_chroot <