bash.yml 297 B

12345678910111213
  1. ---
  2. - name: Download .bashrc file
  3. ansible.builtin.get_url:
  4. url: "{{ bashrc }}"
  5. dest: "{{ user_directory }}/.bashrc"
  6. force: true
  7. - name: Download .bashrc help file
  8. ansible.builtin.get_url:
  9. url: "{{ bashrc_help }}"
  10. dest: "{{ user_directory }}/.bashrc_help"
  11. force: true