#!/bin/sh # fetch and run this in cloud-init, viz: ##cloud-config #runcmd: # - curl -fsSL https://raw.githubusercontent.com/sneak/hacks/master/cloud-init.sh | bash #exec 1 2>&1 | tee -a ${LOG_FILE} export DEBIAN_FRONTEND=noninteractive apt-get update apt-get -y upgrade apt-get -y install vim byobu screen build-essential git mosh bash-completion if [[ ! -d /home/sneak ]]; then useradd -m -s /bin/bash sneak usermod -a -G sudo sneak echo "sneak ALL=NOPASSWD:ALL" > /etc/sudoers.d/sneak fi # run the rest as sneak: sudo -H -u sneak bash < authorized_keys fi if [[ ! -d ~/hacks ]]; then cd ~ git clone https://github.com/sneak/hacks.git fi mkdir -p ~/.local/bashrc.d mkdir -p ~/.local/profile.d mv ~/.profile ~/.local/profile.d/999.distro.profile.sh mv ~/.bashrc ~/.local/bashrc.d/999.distro.bashrc.sh rsync -avP /home/sneak/hacks/homedir.skel/ /home/sneak/ EOF