summaryrefslogtreecommitdiff
path: root/ansible/radicle-dev.yml
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-09-04 13:46:45 +0300
committerLars Wirzenius <liw@liw.fi>2023-09-04 13:46:45 +0300
commitea5f81bd5a0c658ba8ccdda13cc08896f4b471e7 (patch)
tree00a3d14367c4f7eb890bc0dc8b5b78e4488166d8 /ansible/radicle-dev.yml
parent3b4c0340d888133427a6376d85eb77d574b42cea (diff)
downloadansibleness-ea5f81bd5a0c658ba8ccdda13cc08896f4b471e7.tar.gz
radicle-dev: playbook
Sponsored-by: author
Diffstat (limited to 'ansible/radicle-dev.yml')
-rw-r--r--ansible/radicle-dev.yml40
1 files changed, 40 insertions, 0 deletions
diff --git a/ansible/radicle-dev.yml b/ansible/radicle-dev.yml
new file mode 100644
index 0000000..a3fba63
--- /dev/null
+++ b/ansible/radicle-dev.yml
@@ -0,0 +1,40 @@
+- hosts: radicle-dev
+ remote_user: debian
+ become: yes
+ roles:
+ - role: sane_debian_system
+ - role: sshd
+ - role: comfortable-debian-system
+ - role: unix_users
+ - role: rust-rustup
+ - role: liw
+ tasks:
+ - apt:
+ name:
+ - build-essential
+ - debhelper
+ - dh-cargo
+ - python3
+ vars:
+ ansible_python_interpreter: /usr/bin/python3
+
+ sane_debian_system_version: 2
+ sane_debian_system_hostname: "{{ inventory_hostname }}"
+ sane_debian_system_codename: bookworm
+ sane_debian_system_timezone: Europe/Helsinki
+ sane_debian_system_sources_lists:
+ - repo: |
+ deb http://security.debian.org/debian-security bookworm-security main contrib non-free
+
+ - repo: deb http://ci-prod-controller.vm.liw.fi/debian unstable-ci main
+ signing_key: "{{ ci_prod_signing_key }}"
+
+ unix_users_version: 2
+ unix_users:
+ - username: liw
+ comment: Lars Wirzenius
+
+ sshd_version: 1
+ sshd_host_key: "{{ lookup('pipe', 'sshca host private-key radicle-dev') }}"
+ sshd_host_cert: "{{ lookup('pipe', 'sshca host certify --ca liw.fi/ca/host/v5 radicle-dev') }}"
+ sshd_user_ca_pub: "{{ lookup('pipe', 'sshca ca public-key liw.fi/ca/user/v5') }}"