summaryrefslogtreecommitdiff
path: root/ansible/clab-dev.yml
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-08-23 20:38:25 +0300
committerLars Wirzenius <liw@liw.fi>2021-08-23 20:38:25 +0300
commitcdd963c1ac9fc7249ca7209dae9f43a73f32bd9f (patch)
tree871e27c01fa2ed1f402b2dba556bbe81d7dc3af7 /ansible/clab-dev.yml
parente0f022ac64ebd9229868720b4e8c9be2f0668459 (diff)
downloadansibleness-cdd963c1ac9fc7249ca7209dae9f43a73f32bd9f.tar.gz
clab-dev
Sponsored-by: author
Diffstat (limited to 'ansible/clab-dev.yml')
-rw-r--r--ansible/clab-dev.yml48
1 files changed, 48 insertions, 0 deletions
diff --git a/ansible/clab-dev.yml b/ansible/clab-dev.yml
new file mode 100644
index 0000000..6b179a4
--- /dev/null
+++ b/ansible/clab-dev.yml
@@ -0,0 +1,48 @@
+- hosts: clab-dev
+ remote_user: debian
+ become: yes
+ roles:
+ - role: sane_debian_system
+ tags: [sane]
+ - role: comfortable-debian-system
+ tags: [comfy]
+ - role: unix_users
+ tags: [users]
+ - role: liw
+ tags: [liw]
+ - role: rust-rustup
+ tags: [rustup]
+ tasks:
+ - apt:
+ name:
+ - debhelper
+ - build-essential
+ - dh-cargo
+ - git
+ - moreutils
+ - python3
+ - python3-yaml
+ - subplot
+ - texlive-fonts-recommended
+ - texlive-latex-base
+ - texlive-latex-recommended
+ vars:
+ ansible_python_interpreter: python3
+
+ sane_debian_system_version: 2
+ sane_debian_system_hostname: clab-dev
+ sane_debian_system_codename: bullseye
+
+ timezone: Europe/Helsinki
+
+ unix_users_version: 2
+ unix_users:
+ - username: liw
+ comment: Lars Wirzenius
+ sudo: yes
+ authorized_keys: |
+ {{ liw_ssh_pub }}
+
+ sane_debian_system_sources_lists:
+ - repo: deb http://ci-prod-controller.vm.liw.fi/debian unstable-ci main
+ signing_key: "{{ ci_prod_signing_key }}"