bash.yml 381 B

12345678910111213
  1. ---
  2. - name: Copy .bashrc
  3. copy: src=bash/bashrc dest=/root/.bashrc owner=root group=root mode=0644
  4. - name: Link to .profile to .bashrc
  5. file: src=/root/.bashrc dest=/root/.profile owner=root group=root state=link
  6. - name: Setup Timezone [{{ oo_timezone }}]
  7. file: >
  8. src=/usr/share/zoneinfo/{{ oo_timezone }}
  9. dest=/etc/localtime
  10. owner=root
  11. group=root state=link