aboutsummaryrefslogtreecommitdiffstats
path: root/roles/root_env/tasks/main.yml
blob: 2a0e04fd69c8242f662d7add04a6230d6e7e4e4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
---
- name: root .bash_profile
  copy:
    src: files/bash_profile.sh
    dest: /root/.bash_profile
- name: root .bashrc
  template:
    src: files/bashrc.sh.j2
    dest: /root/.bashrc

# vim: set ts=2 sw=2 et: