summaryrefslogtreecommitdiff
path: root/ansible/scap-dev.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/scap-dev.yml
parent22a19a24c7eee67a32cbb8f45f674154d0c09953 (diff)
downloadansibleness-3d17642a21a01e98b71d8218c7449ec1dc6714cd.tar.gz
Drop: obsolete playbooks and stuff
Diffstat (limited to 'ansible/scap-dev.yml')
-rw-r--r--ansible/scap-dev.yml56
1 files changed, 0 insertions, 56 deletions
diff --git a/ansible/scap-dev.yml b/ansible/scap-dev.yml
deleted file mode 100644
index 34754c8..0000000
--- a/ansible/scap-dev.yml
+++ /dev/null
@@ -1,56 +0,0 @@
-- hosts: scap-dev
- remote_user: root
- tasks:
-
- - name: "install gpg"
- apt:
- name: gnupg
-
- - 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
- - build-essential
- - locales-all
- - git
- - python
- - python3
- - python-all-dev
- - python3-all-dev
- - python-tox
- - php5
- - debhelper
- - bash-completion
- - python-setuptools
- - git-buildpackage
- - rsync
-# - subplot
- - python-six
- - python-yaml
- - python-pygments
- - python-concurrent.futures
- - python-requests
- - python-jinja2
- - pandoc
- - python-configparser
- - python-psutil
- - python-flake8
-
- - 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 }}"