Skip to content
Snippets Groups Projects
Commit 18054de4 authored by Lars Beckers's avatar Lars Beckers
Browse files

modify branding role for drop in usage

parent 176b9468
No related branches found
No related tags found
No related merge requests found
File moved
---
# file: roles/common/tasks/shell.yml
- name: ensure deployment of greeter
copy: src=fsmpi/motd dest=/etc/motd owner=root group=root mode=0644
tags:
- config
- shell
- fsmpi
- name: ensure deployment of issue.net
copy: src=fsmpi/issue.net dest=/etc/issue.net owner=root group=root mode=0644
tags:
- config
- shell
- fsmpi
- name: ensure deployment of a fancy gitconfig for root
copy: src=fsmpi/gitconfig dest=/root/.gitconfig owner=root group=root mode=0640
tags:
- config
- shell
- root
- fsmpi
---
# file: roles/common/tasks/shell.yml
- name: ensure installation of basic shell commands
apt: state=latest name={{ item }} install_recommends=no
with_items:
- git
- vim
- vim-scripts
- zsh
- mtr-tiny
- whois
tags:
- packages
- shell
- name: ensure the necessary terminfo is available
apt: name=ncurses-term state=latest
tags:
- packages
- shell
- name: ensure zsh-grml is available
get_url: url=http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc dest={{ item }} owner=root group=root mode=0644
with_items:
- /etc/zsh/zshrc
- /root/.zshrc
tags:
- config
- shell
- name: ensure zsh-grml is the default
get_url: url=http://git.grml.org/f/grml-etc-core/etc/skel/.zshrc dest={{ item }} owner=root group=root mode=0640
with_items:
- /etc/skel/.zshrc
tags:
- config
- shell
- name: ensure deployment of greeter
copy: src=fsmpi/motd dest=/etc/motd owner=root group=root mode=0644
tags:
- config
- shell
- fsmpi
- name: ensure deployment of issue.net
copy: src=fsmpi/issue.net dest=/etc/issue.net owner=root group=root mode=0644
tags:
- config
- shell
- fsmpi
- name: ensure deployment of a fancy bashrc for root
copy: src=root/bashrc dest=/root/.bashrc owner=root group=root mode=0640
tags:
- config
- shell
- root
- name: ensure deployment of a fancy vimrc for root
copy: src=root/vimrc dest=/root/.vimrc owner=root group=root mode=0640
tags:
- config
- shell
- root
- name: ensure deployment of a fancy gitconfig for root
copy: src=root/gitconfig dest=/root/.gitconfig owner=root group=root mode=0640
tags:
- config
- shell
- root
- name: ensure a properly configured root account
user: name=root shell=/bin/zsh
tags:
- config
- shell
- root
- name: ensure that pcspeaker remains silent
kernel_blacklist: name=pcspkr state=present
notify:
- rerun depmod
- update initramfs
tags:
- config
- shell
- modules
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment