summaryrefslogtreecommitdiffstats
path: root/roles/atomic_base/tasks/bash.yml
blob: 6e577971a2ac452891ed8ee5cac0840008965994 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
- name: Copy .bashrc
  copy: src=bash/bashrc dest=/root/.bashrc owner=root group=root mode=0644

- name: Link to .profile to .bashrc
  file: src=/root/.bashrc dest=/root/.profile owner=root group=root state=link

- name: Setup Timezone [{{ oo_timezone }}]
  file: >
    src=/usr/share/zoneinfo/{{ oo_timezone }}
    dest=/etc/localtime
    owner=root
    group=root state=link