File diff cd445c47c4bf → f4e9cd36dad4
roles/common/tasks/main.yml
Show inline comments
 
@@ -19,6 +19,17 @@
 
- name: Set home directory mask
 
  lineinfile: dest=/etc/adduser.conf state=present backrefs=yes regexp='^DIR_MODE=' line='DIR_MODE=0750'
 

	
 
- name: Deploy bash profile configuration for fancier prompts
 
  template: src="bash_prompt.sh.j2" dest="/etc/profile.d/bash_prompt.sh"
 
            owner=root group=root mode=644
 

	
 
- name: Replace default and skeleton bashrc
 
  copy: src="{{ item.key }}" dest="{{ item.value }}"
 
        owner=root group=root mode=644
 
  with_dict:
 
    skel_bashrc: "/etc/skel/.bashrc"
 
    bashrc: "/etc/bash.bashrc"
 

	
 
- name: Install sudo
 
  apt: name=sudo state=present