2016-11-30 06:21:53 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2018-04-24 21:02:26 +02:00
|
|
|
# Required for newer mysql-server packages to install/upgrade on Ubuntu 16.04.
|
|
|
|
rm -f /usr/sbin/policy-rc.d
|
|
|
|
|
2016-11-30 06:21:53 +01:00
|
|
|
# Improve prompts on remote host for interactive use.
|
2021-01-21 18:22:58 +01:00
|
|
|
# `cat << EOF > ~/.bashrc` flakes sometimes since /tmp may not be ready yet in
|
|
|
|
# the container. So don't do that
|
|
|
|
echo "alias ls='ls --color=auto'" > ~/.bashrc
|
|
|
|
echo "export PS1='\[\e]0;\u@\h: \w\a\]\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '" >> ~/.bashrc
|
|
|
|
echo "cd ~/ansible/" >> ~/.bashrc
|