aboutsummaryrefslogtreecommitdiffstats
path: root/roles/users/tasks/root.yml
blob: e5b3b456eaec08673c76b0b03e8cc64fc3ccae18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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: