summaryrefslogtreecommitdiff
path: root/roles/apt-repo/blackmagic/tasks
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2020-12-28 05:40:19 +0100
committerChristian Pointner <equinox@spreadspace.org>2020-12-28 05:40:19 +0100
commitb51b4c64e8cd1a744e2e144fdf7b114e0f8ed20b (patch)
tree220ca99d27b2c9b2c7a7793031864d273ab321e4 /roles/apt-repo/blackmagic/tasks
parentdebian/preseed: manual partitioning (diff)
blackmagic add gui stuff
Diffstat (limited to 'roles/apt-repo/blackmagic/tasks')
-rw-r--r--roles/apt-repo/blackmagic/tasks/main.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/roles/apt-repo/blackmagic/tasks/main.yml b/roles/apt-repo/blackmagic/tasks/main.yml
index c2652ed3..c8a696b7 100644
--- a/roles/apt-repo/blackmagic/tasks/main.yml
+++ b/roles/apt-repo/blackmagic/tasks/main.yml
@@ -16,7 +16,7 @@
line: "machine build.spreadspace.org login {{ apt_repo_blackmagic_auth.username }} password {{ apt_repo_blackmagic_auth.password }}"
create: yes
mode: 0600
- register: apt_repo_blackmagic_auth_legacy
+ register: apt_repo_blackmagic_authconf_legacy
- name: configure repo authentication
when: (ansible_distribution == "Ubuntu") or
@@ -27,7 +27,7 @@
path: /etc/apt/auth.conf
regexp: "^machine build.spreadspace.org "
state: absent
- register: apt_repo_blackmagic_auth_legacy_remove
+ register: apt_repo_blackmagic_authconf_legacy_remove
- name: configure repo authentication
copy:
@@ -37,7 +37,7 @@
password {{ apt_repo_blackmagic_auth.password }}
dest: /etc/apt/auth.conf.d/blackmagic.conf
mode: 0600
- register: apt_repo_blackmagic_auth
+ register: apt_repo_blackmagic_authconf
- name: add repository entry
@@ -49,9 +49,9 @@
- name: update apt cache
when: apt_repo_blackmagic_key is changed or
- apt_repo_blackmagic_auth_legacy is changed or
- apt_repo_blackmagic_auth_legacy_remove is changed or
- apt_repo_blackmagic_auth is changed or
+ apt_repo_blackmagic_authconf_legacy is changed or
+ apt_repo_blackmagic_authconf_legacy_remove is changed or
+ apt_repo_blackmagic_authconf is changed or
apt_repo_blackmagic_sources is changed
apt:
update_cache: yes