@installdoc/ansible-gas-station
Version:
An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤
15 lines (13 loc) • 369 B
YAML
- name: Ensure to install git-lfs
dnf:
enablerepo: epel
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