diff options
author | Emil Renner Berthing <esmil@labitat.dk> | 2018-09-30 21:25:28 +0200 |
---|---|---|
committer | Emil Renner Berthing <esmil@labitat.dk> | 2018-09-30 21:30:53 +0200 |
commit | a39fb817e87d053f82e06305b4a737d40c483ee3 (patch) | |
tree | 595e7297f2f7a565e3e5786255e17d4815eab486 /roles/users/templates/root | |
parent | a34e4d1dfe1b6990824051fde40e9288c8cdfd5d (diff) | |
download | labitat-ansible-a39fb817e87d053f82e06305b4a737d40c483ee3.tar.gz labitat-ansible-a39fb817e87d053f82e06305b4a737d40c483ee3.tar.xz labitat-ansible-a39fb817e87d053f82e06305b4a737d40c483ee3.zip |
users: root: let each user have their own root bashrc
Diffstat (limited to 'roles/users/templates/root')
-rw-r--r-- | roles/users/templates/root/bashrc.sh.j2 | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/roles/users/templates/root/bashrc.sh.j2 b/roles/users/templates/root/bashrc.sh.j2 deleted file mode 100644 index bcc4ddb..0000000 --- a/roles/users/templates/root/bashrc.sh.j2 +++ /dev/null @@ -1,34 +0,0 @@ -# if not running interactively, don't do anything -[[ $- != *i* ]] && return - -export PS1='\[\e[1;31m\]\u\[\e[00m\]@\[\e[0;31m\]\h\[\e[1;34m\]\w\[\e[00m\]\$ ' -unset PROMPT_COMMAND - -# directory listing -eval "$(dircolors -b)" -alias ls='ls --color=auto -F' -alias ll='ls -Ahl' - -# some more alias to avoid making mistakes: -alias rm='rm -ri' -alias cp='cp -rid' -alias mv='mv -i' - -# editor -export EDITOR='vim' -alias vi='vim' - -# network -alias ip6='ip -6' -{% if ansible_service_mgr == 'systemd' %} - -# systemd -alias start='systemctl start' -alias stop='systemctl stop' -alias restart='systemctl restart' -alias status='systemctl status' -alias cgls='systemd-cgls' -alias cgtop='systemd-cgtop' -{% endif %} - -cd |