--- - name: add repository key copy: src: repo.gpg dest: /etc/apt/keyrings/helsinki.gpg register: apt_repo_helsinki_key ## TODO: remove once all servers have been converted - name: remove repository key from old location file: path: /etc/apt/trusted.gpg.d/helsinki.gpg state: absent - name: add repository entry copy: content: | deb [signed-by=/etc/apt/keyrings/helsinki.gpg] http://build.helsinki.at/ {{ ansible_distribution_release }} main dest: /etc/apt/sources.list.d/helsinki.list register: apt_repo_helsinki_sources - name: update apt cache when: apt_repo_helsinki_key is changed or apt_repo_helsinki_sources is changed command: apt-get update