blob: d63da994ee9f5331e245540523bc4a72ff6ff1c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
- name: add repository key
copy:
src: repo.gpg
dest: /etc/apt/trusted.gpg.d/nordvpn.gpg
register: apt_repo_nordvpn_key
- name: add repository entry
copy:
content: |
deb https://repo.nordvpn.com/deb/nordvpn/debian stable main
dest: /etc/apt/sources.list.d/nordvpn.list
register: apt_repo_nordvpn_sources
- name: update apt cache
when: apt_repo_nordvpn_key is changed or
apt_repo_nordvpn_sources is changed
command: apt-get update
args:
warn: false
|