summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ansible/hosts4
-rw-r--r--ansible/vmdb2-dev.yml44
2 files changed, 48 insertions, 0 deletions
diff --git a/ansible/hosts b/ansible/hosts
index e2f8dfc..01e97f6 100644
--- a/ansible/hosts
+++ b/ansible/hosts
@@ -27,6 +27,10 @@ gregvm ansible_ssh_host=78.46.87.152
sequoia
vbox
+vmhost
+
+vmdb2-dev
+
[ick-workers]
ick3-unstable hostname=ick3-unstable debian_codename=unstable pbuilder_othermirror_distro=unstable
ick3-stretch hostname=ick3-stretch debian_codename=stretch pbuilder_othermirror_distro=unstable
diff --git a/ansible/vmdb2-dev.yml b/ansible/vmdb2-dev.yml
new file mode 100644
index 0000000..7f5784d
--- /dev/null
+++ b/ansible/vmdb2-dev.yml
@@ -0,0 +1,44 @@
+- hosts: vmdb2-dev
+ remote_user: root
+ roles:
+ - role: sane_debian_system
+ tags: [sane]
+ - comfortable-debian-system
+ - unix_users
+ - version-controller
+ tasks:
+ - apt:
+ name:
+ - python3-all
+ - python3-coverage-test-runner
+ - pandoc
+ - fonts-freefont-ttf
+ - texlive-latex-base
+ - texlive-latex-recommended
+ - texlive-fonts-recommended
+ - python3-cliapp
+ - python3-jinja2
+ - cmdtest
+ - python3-yaml
+ - debootstrap
+ - qemu-utils
+ - parted
+ - kpartx
+ - subplot
+ vars:
+ hostname: vmdb2-dev
+ debian_codename: buster
+ ansible_python_interpreter: python3
+
+ timezone: Europe/Helsinki
+
+ unix_users:
+ - username: liw
+ comment: Lars Wirzenius
+ sudo: yes
+ authorized_keys: |
+ {{ liw_ssh_pub }}
+
+ sources_lists:
+ - repo: deb http://ci-prod-controller.vm.liw.fi/debian unstable-ci main
+ signing_key: "{{ ci_prod_signing_key }}"