2021-06-20 20:05:56 -05:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
|
|
|
# docker.sh
|
|
|
|
# Spins up a Docker container with the contents of this repo ready to run
|
|
|
|
#
|
|
|
|
# NOTE: This file contains a reference to itself
|
|
|
|
#
|
|
|
|
set -e
|
|
|
|
if [ -n "$ANSIBLE_SSH_KEY" ]; then
|
|
|
|
# Set up an unprivileged user with the same UID-GID as the user who owns the volume
|
2021-06-20 20:18:52 -05:00
|
|
|
targetUID="$(stat -c %u /etc/ansible.orig)"
|
|
|
|
targetGID="$(stat -c %g /etc/ansible.orig)"
|
2021-06-20 20:05:56 -05:00
|
|
|
printf "\e[37mCreating a user with $targetUID:$targetGID...\e[0m\n"
|
|
|
|
groupadd ansible -g "$targetGID"
|
|
|
|
useradd ansible \
|
|
|
|
-d /home/ansible \
|
|
|
|
-g ansible \
|
|
|
|
-s /bin/bash
|
|
|
|
# And has sudo rights
|
|
|
|
mkdir /etc/sudoers.d
|
|
|
|
echo 'ansible ALL=(ALL:ALL) NOPASSWD:ALL' > /etc/sudoers.d/50-playbookuser
|
|
|
|
# And owns their home
|
|
|
|
chown ansible. ~ansible
|
|
|
|
|
|
|
|
# Dump the private key as fast as possible to reduce leak
|
|
|
|
printf '\e[37mInstalling private key...\e[0m\n'
|
|
|
|
mkdir -p ~ansible/.ssh
|
|
|
|
echo "$ANSIBLE_SSH_KEY" > ~ansible/.ssh/desu
|
|
|
|
unset ANSIBLE_SSH_KEY
|
|
|
|
chmod 0600 ~ansible/.ssh/desu
|
|
|
|
chown ansible. ~ansible/.ssh/desu
|
|
|
|
|
|
|
|
# Give the ansible user a managable profile
|
|
|
|
cp /etc/ansible/roles/common/templates/profile.sh /etc/profile.d/50-ansible.sh
|
|
|
|
|
|
|
|
# Install the packages we need to test things in the repo
|
|
|
|
printf '\e[37mUpdating repositories...\e[0m\n'
|
|
|
|
apt-get update > /dev/null 2>&1
|
|
|
|
printf '\e[37mInstalling packages from APT...\e[0m\n'
|
2021-06-20 20:18:52 -05:00
|
|
|
apt-get install -y openssh-client python-is-python3 python3-docker python3-pip rsync sudo vim > /dev/null 2>&1
|
2021-06-20 20:05:56 -05:00
|
|
|
printf '\e[37mInstalling packages from PIP (this may take a minute)...\e[0m\n'
|
|
|
|
pip install -q ansible ansible-lint
|
|
|
|
|
2021-06-20 20:18:52 -05:00
|
|
|
# Setup our playbook environment roles
|
|
|
|
printf '\e[37mCreating local copy of playbook files...\e[0m\n'
|
|
|
|
mkdir /etc/ansible
|
|
|
|
chown ansible. /etc/ansible
|
|
|
|
sudo -u ansible rsync -aHS /etc/ansible.orig /etc/ansible --exclude .git
|
|
|
|
printf '\e[37mInstalling roles...\e[0m\n'
|
|
|
|
sudo -u ansible ansible-galaxy install -r roles/requirements.yml -p roles
|
|
|
|
|
2021-06-20 20:05:56 -05:00
|
|
|
# Drop to the ansible user
|
|
|
|
printf '\e[32mAnsible is ready to run\e[0m\n'
|
|
|
|
printf ' * \e[33mThe repo is located at /etc/ansible\e[0m\n'
|
|
|
|
printf ' * For documentation, see README.md\n'
|
|
|
|
printf ' * For the main playbook, see site.yml\n'
|
|
|
|
printf 'You have passwordless sudo in this container\n'
|
|
|
|
printf '\n'
|
|
|
|
exec sudo -u ansible -i
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
ANSIBLE_SSH_KEY="$(cat ~/.ssh/desu)"
|
|
|
|
docker run -it \
|
|
|
|
-e "ANSIBLE_SSH_KEY=$ANSIBLE_SSH_KEY" \
|
2021-06-20 20:18:52 -05:00
|
|
|
-v "$PWD:/etc/ansible.orig:ro" \
|
2021-06-20 20:05:56 -05:00
|
|
|
ubuntu:focal \
|
|
|
|
bash -c 'cd /etc/ansible && ./contrib/docker.sh && exec bash'
|