20 lines
571 B
YAML
Raw Normal View History

---
# Create file to easily push git changes and call SCM.
2021-02-11 20:16:23 -06:00
- name: General | Scripts | Root | scm.sh
blockinfile:
2021-02-12 07:50:38 -06:00
path: "{{ user_root.home }}/bin/scm.sh"
block: |
# 20210211 - Make life easier!
2021-02-11 20:14:21 -06:00
ssh ling@leet "cd Code/Ansible/ansible-pull; git push"
2021-02-12 06:02:28 -06:00
time curl https://scm.hyperling.com | bash
2021-02-11 20:52:33 -06:00
marker: '{mark}'
2021-02-12 06:01:43 -06:00
marker_begin: "#!{{ bash_exec.stdout }}"
2021-02-11 20:52:33 -06:00
marker_end: "exit 0"
state: present
create: yes
2021-02-11 20:16:23 -06:00
- name: General | Scripts | Root | scm.sh Permissions
file:
2021-02-12 07:50:38 -06:00
path: "{{ user_root.home }}/bin/scm.sh"
2021-02-11 20:16:23 -06:00
mode: '0755'