mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
377 B
Bash
15 lines
377 B
Bash
8 years ago
|
#!/bin/sh
|
||
|
|
||
|
set -eu
|
||
|
|
||
7 years ago
|
# Required for newer mysql-server packages to install/upgrade on Ubuntu 16.04.
|
||
|
rm -f /usr/sbin/policy-rc.d
|
||
|
|
||
8 years ago
|
# Improve prompts on remote host for interactive use.
|
||
6 years ago
|
# shellcheck disable=SC1117
|
||
8 years ago
|
cat << EOF > ~/.bashrc
|
||
|
alias ls='ls --color=auto'
|
||
|
export PS1='\[\e]0;\u@\h: \w\a\]\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
|
||
|
cd ~/ansible/
|
||
|
EOF
|