summaryrefslogtreecommitdiff
path: root/ansible/subplot-stress.yml
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-05-05 11:26:33 +0300
committerLars Wirzenius <liw@liw.fi>2020-05-05 11:26:33 +0300
commit3d17642a21a01e98b71d8218c7449ec1dc6714cd (patch)
tree6103a81f8b4dfd2082d3db24e30dfb9febffa02b /ansible/subplot-stress.yml
parent22a19a24c7eee67a32cbb8f45f674154d0c09953 (diff)
downloadansibleness-3d17642a21a01e98b71d8218c7449ec1dc6714cd.tar.gz
Drop: obsolete playbooks and stuff
Diffstat (limited to 'ansible/subplot-stress.yml')
-rw-r--r--ansible/subplot-stress.yml41
1 files changed, 0 insertions, 41 deletions
diff --git a/ansible/subplot-stress.yml b/ansible/subplot-stress.yml
deleted file mode 100644
index f97e790..0000000
--- a/ansible/subplot-stress.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-- hosts: subplot-stress
- remote_user: root
- tasks:
-
- - name: "install gnupg"
- apt:
- name: gpg
-
- - name: "add Subplot APT key"
- apt_key:
- data: "{{ ci_prod_signing_key }}"
-
- - name: "add Subplot repository"
- apt_repository:
- repo: "deb http://ci-prod-controller.vm.liw.fi/debian unstable-ci main"
-
- - name: "install packages"
- apt:
- name:
- - screen
- - subplot
- - locales-all
- - git
- - python3
- - cargo
- - texlive-latex-base
- - texlive-latex-recommended
- - texlive-fonts-recommended
- - build-essential
- - bc
-
- - name: "create user liw"
- user:
- name: liw
- comment: "Lars Wirzenius"
- shell: /bin/bash
-
- - name: "install authorized_keys for liw"
- authorized_key:
- user: liw
- key: "{{ liw_ssh_pub }}"