diff options
author | Jonathan Bauer | 2021-05-19 10:20:10 +0200 |
---|---|---|
committer | Jonathan Bauer | 2021-05-19 10:20:10 +0200 |
commit | 0c6ba1bc0e2c7e35b9c9341b548f31d07e15b672 (patch) | |
tree | b45ad36c708ce10ef3a71c2ca44a52e2799e3748 /singularity | |
parent | [*] volatile journald and sysrq config (diff) | |
download | ansible-bwlp-0c6ba1bc0e2c7e35b9c9341b548f31d07e15b672.tar.gz ansible-bwlp-0c6ba1bc0e2c7e35b9c9341b548f31d07e15b672.tar.xz ansible-bwlp-0c6ba1bc0e2c7e35b9c9341b548f31d07e15b672.zip |
[singularity] singularity
Diffstat (limited to 'singularity')
-rw-r--r-- | singularity/tasks/main.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/singularity/tasks/main.yml b/singularity/tasks/main.yml new file mode 100644 index 0000000..22ef647 --- /dev/null +++ b/singularity/tasks/main.yml @@ -0,0 +1,20 @@ +--- +- name: Add NeuroDebian GPG apt-key + apt_key: + keyserver: hkp://eu.pool.sks-keyservers.net:80 + id: A5D32F012649A5A9 + become: yes + +- name: Add NeuroDebian repository in /etc/apt/sources.list.d + get_url: + url: http://neuro.debian.net/lists/bionic.de-m.libre + dest: /etc/apt/sources.list.d/neurodebian.sources.list + checksum: sha256:0b8a1358a9f85aed8e3f51206caa9eb1babfcfbb00997c263c88cdcf2382b171 + mode: 0644 + become: yes + +- name: Update and install singularity-container + apt: + name: singularity-container + update_cache: yes + become: yes |