UNPKG

@installdoc/ansible-gas-station

Version:

An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤

21 lines (19 loc) 551 B
--- - name: "Ensure bashrc is updated" become_user: "{{ user.username }}" lineinfile: path: ~/.bashrc regex: 'export PATH="{{ gitfuzzy_src_dir }}/bin:$PATH"' line: 'export PATH="{{ gitfuzzy_src_dir }}/bin:$PATH"' create: true backup: true mode: 0700 - name: "Ensure zshrc is updated" become_user: "{{ user.username }}" lineinfile: path: ~/.zshrc regex: 'export PATH="{{ gitfuzzy_src_dir }}/bin:$PATH"' line: 'export PATH="{{ gitfuzzy_src_dir }}/bin:$PATH"' create: true backup: true mode: 0700