Markus Katharina Brechtel před 7 roky
rodič
revize
eb3b2ea2be
3 změnil soubory, kde provedl 76 přidání a 0 odebrání
  1. +5
    -0
      defaults/main.yml
  2. +6
    -0
      tasks/main.yml
  3. +65
    -0
      templates/bashrc.j2

+ 5
- 0
defaults/main.yml Zobrazit soubor

@@ -0,0 +1,5 @@
root_user_aliases:
- name: aptitude-list-manually-installed
command: aptitude search "!~prequired !~important ~i !~M"
- name: apt-tail-log
command: tail -f /var/log/apt/term.log

+ 6
- 0
tasks/main.yml Zobrazit soubor

@@ -0,0 +1,6 @@
---

- name: root bashrc
template:
src: bashrc.j2
dest: /root/.bashrc

+ 65
- 0
templates/bashrc.j2 Zobrazit soubor

@@ -0,0 +1,65 @@
# ~/.bashrc: executed by bash(1) for non-login shells.

{{ ansible_managed | comment }}

# Note: PS1 and umask are already set in /etc/profile. You should not
# need this unless you want different defaults for root.
# PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ '
# umask 022

# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color|*-256color) color_prompt=yes;;
esac

# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes

if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi

if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac

# You may uncomment the following lines if you want `ls' to be colorized:
# export LS_OPTIONS='--color=auto'
# eval "`dircolors`"
# alias ls='ls $LS_OPTIONS'
# alias ll='ls $LS_OPTIONS -l'
# alias l='ls $LS_OPTIONS -lA'
#
# Some more alias to avoid making mistakes:
# alias rm='rm -i'
# alias cp='cp -i'
# alias mv='mv -i'

{% for alias in root_user_aliases %}
alias {{alias.name}}='{{alias.command}}'
{% endfor %}

HISTFILE=/root/.history
shopt -s histappend # append to history, don't overwrite it
export PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"