summaryrefslogtreecommitdiffstats
path: root/roles/atomic_base/tasks/bash.yml
blob: 547ae83c3de202bc3b436b6462931e0cd2cfb404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- 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