@installdoc/ansible-gas-station
Version:
An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤
14 lines (12 loc) • 350 B
YAML
- name: Ensure git-lfs is installed
apt:
name: git-lfs
state: present
update_cache: "{{ omit if skip_package_cache_update is defined else 'true' }}"
register: install_result
- name: Ensure git-lfs global configuration is run # noqa 303 503
command: git lfs install --system
args:
chdir: ~/
when: install_result.changed