Skip to content

Commit

Permalink
Don't install recommends.
Browse files Browse the repository at this point in the history
  • Loading branch information
apollo13 committed Jan 1, 2024
1 parent 63bfbbf commit b779c95
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tasks/install_system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@
package:
name: "{{ borgbackup_system_package_name }}"
state: present
when: ansible_os_family != "Debian"

- name: Install borgbackup
apt:
name: "{{ borgbackup_system_package_name }}"
install_recommends: false
state: present
when: ansible_os_family == "Debian"

- name: Remove upstream version
file:
Expand Down

0 comments on commit b779c95

Please sign in to comment.