diff options
author | Emil Renner Berthing <esmil@labitat.dk> | 2018-09-26 11:46:03 +0200 |
---|---|---|
committer | Emil Renner Berthing <esmil@labitat.dk> | 2018-09-26 11:46:03 +0200 |
commit | ae254b596f6e12601e0f6b206d09b87e5a9b480d (patch) | |
tree | 7e4448756a033125230d85836473a1b927ef9687 /roles/users | |
parent | 58844e9c83370bad5e18483476cf9f43cab7c6ea (diff) | |
download | labitat-ansible-ae254b596f6e12601e0f6b206d09b87e5a9b480d.tar.gz labitat-ansible-ae254b596f6e12601e0f6b206d09b87e5a9b480d.tar.xz labitat-ansible-ae254b596f6e12601e0f6b206d09b87e5a9b480d.zip |
users: merge root_env into this role
Diffstat (limited to 'roles/users')
-rw-r--r-- | roles/users/files/root/bash_profile.sh | 1 | ||||
-rw-r--r-- | roles/users/tasks/main.yml | 4 | ||||
-rw-r--r-- | roles/users/tasks/root.yml | 18 | ||||
-rw-r--r-- | roles/users/templates/root/bashrc.sh.j2 | 34 |
4 files changed, 57 insertions, 0 deletions
diff --git a/roles/users/files/root/bash_profile.sh b/roles/users/files/root/bash_profile.sh new file mode 100644 index 0000000..3ee6b29 --- /dev/null +++ b/roles/users/files/root/bash_profile.sh @@ -0,0 +1 @@ +. "$HOME/.bashrc" diff --git a/roles/users/tasks/main.yml b/roles/users/tasks/main.yml index 2cc6cd1..8d4acfa 100644 --- a/roles/users/tasks/main.yml +++ b/roles/users/tasks/main.yml @@ -1,4 +1,8 @@ --- +- import_tasks: root.yml + tags: + - users + - root - import_tasks: esmil.yml tags: - users diff --git a/roles/users/tasks/root.yml b/roles/users/tasks/root.yml new file mode 100644 index 0000000..e5b3b45 --- /dev/null +++ b/roles/users/tasks/root.yml @@ -0,0 +1,18 @@ +--- +- name: root .bash_profile + copy: + dest: '/root/.bash_profile' + src: root/bash_profile.sh + owner: root + group: root + mode: 0644 + +- name: root .bashrc + template: + dest: '/root/.bashrc' + src: root/bashrc.sh.j2 + owner: root + group: root + mode: 0644 + +# vim: set ts=2 sw=2 et: diff --git a/roles/users/templates/root/bashrc.sh.j2 b/roles/users/templates/root/bashrc.sh.j2 new file mode 100644 index 0000000..bcc4ddb --- /dev/null +++ b/roles/users/templates/root/bashrc.sh.j2 @@ -0,0 +1,34 @@ +# 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 |