Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to create apt.conf.d files #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,17 @@ apt_aptitude_solution_cost: []
# priority: 1001
apt_preferences: []

# List of apt configuration.
# apt_conf_d:
# - file: 10options
# content: |
# # Managed by Ansible
# Dpkg::Options {
# "--force-confdef";
# "--force-confold";
# }
apt_conf_d: []

```

## Handlers
Expand Down
11 changes: 11 additions & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,3 +151,14 @@ apt_aptitude_solution_cost: []
# pin: "version 5.20*"
# priority: 1001
apt_preferences: []

# List of apt configuration.
# apt_conf_d:
# - file: 10options
# content: |
# # Managed by Ansible
# Dpkg::Options {
# "--force-confdef";
# "--force-confold";
# }
apt_conf_d: []
9 changes: 9 additions & 0 deletions tasks/preferences.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,12 @@
group: root
mode: 0644
with_items: "{{ apt_preferences }}"

- name: Configuring APT
copy:
content: "{{ item.content }}"
dest: "/etc/apt/apt.conf.d/{{ item.file }}"
owner: root
group: root
mode: 0644
with_items: "{{ apt_conf_d }}"