summaryrefslogtreecommitdiffstats
path: root/roles/cuda/tasks/configure_apt.yml
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2018-07-05 16:22:58 +0200
committerSuren A. Chilingaryan <csa@suren.me>2018-07-05 16:22:58 +0200
commit0b3d99f96dabb1aa2fbf7f99559852916a97d610 (patch)
treeb56e453cf5182a24c6878c23f5985781928d1e57 /roles/cuda/tasks/configure_apt.yml
parent5416f8599ffa92b69bb87434dc1175d760760bbe (diff)
parent813756495d5ef33fa3cc95d69b6d88418ebe7bb1 (diff)
downloaditm-0b3d99f96dabb1aa2fbf7f99559852916a97d610.tar.gz
itm-0b3d99f96dabb1aa2fbf7f99559852916a97d610.tar.bz2
itm-0b3d99f96dabb1aa2fbf7f99559852916a97d610.tar.xz
itm-0b3d99f96dabb1aa2fbf7f99559852916a97d610.zip
Merge commit '813756495d5ef33fa3cc95d69b6d88418ebe7bb1' as 'roles/cuda'
Diffstat (limited to 'roles/cuda/tasks/configure_apt.yml')
-rw-r--r--roles/cuda/tasks/configure_apt.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/roles/cuda/tasks/configure_apt.yml b/roles/cuda/tasks/configure_apt.yml
new file mode 100644
index 0000000..53a38a5
--- /dev/null
+++ b/roles/cuda/tasks/configure_apt.yml
@@ -0,0 +1,15 @@
+---
+# tasks file for ansible-role-cuda
+- name: Trust packaging key for Nvidia repositories (apt)
+ apt_key:
+ data: "{{ lookup('file', 'files/nvidia_packaging_key.asc') }}"
+ id: "{{ cuda_packaging_key_id }}"
+ state: present
+
+- name: Configure Nvidia repository (apt)
+ apt_repository:
+ repo: "deb {{ cuda_repo_url }}/{{ cuda_repo_subfolder }}/x86_64 /"
+ filename: nvidia
+ state: present
+
+# vim:ft=ansible: