Selaa lähdekoodia

bashrc

master
vanhempi
commit
e997177538
2 muutettua tiedostoa jossa 2 lisäystä ja 56 poistoa
  1. +1
    -1
      defaults/main.yml
  2. +1
    -55
      templates/bashrc.j2

+ 1
- 1
defaults/main.yml Näytä tiedosto

@@ -1,5 +1,5 @@
root_user_aliases:
- name: aptitude-list-manually-installed
command: aptitude search "!~prequired !~important ~i !~M"
command: aptitude search '!?priority(required) !?priority(important) ?installed !?automatic'
- name: apt-tail-log
command: tail -f /var/log/apt/term.log

+ 1
- 55
templates/bashrc.j2 Näytä tiedosto

@@ -2,62 +2,8 @@

{{ 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}}'
alias {{alias.name}}="{{alias.command}}"
{% endfor %}

HISTFILE=/root/.history