41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
YAML
---
|
|
- name: Bootstrap Ubuntu System
|
|
vars:
|
|
bootstrap_ubuntu_release: >-
|
|
{{ 'plucky' if bootstrap_os_key == 'ubuntu' else 'noble' }}
|
|
bootstrap_ubuntu_extra: >-
|
|
{{
|
|
lookup('vars', bootstrap_var_key)
|
|
| reject('equalto', '')
|
|
| join(' ')
|
|
}}
|
|
block:
|
|
- name: Install Ubuntu base system
|
|
ansible.builtin.command: >-
|
|
debootstrap --include=linux-image-generic
|
|
{{ bootstrap_ubuntu_release }} /mnt
|
|
http://archive.ubuntu.com/ubuntu/
|
|
register: bootstrap_ubuntu_base_result
|
|
changed_when: bootstrap_ubuntu_base_result.rc == 0
|
|
|
|
- name: Ensure chroot has resolv.conf
|
|
ansible.builtin.file:
|
|
src: /run/NetworkManager/resolv.conf
|
|
dest: /mnt/etc/resolv.conf
|
|
state: link
|
|
|
|
- name: Enable universe repository
|
|
ansible.builtin.command: "{{ chroot_command }} sed -i '1s|$| universe|' /etc/apt/sources.list"
|
|
register: bootstrap_ubuntu_repo_result
|
|
changed_when: bootstrap_ubuntu_repo_result.rc == 0
|
|
|
|
- name: Update package lists
|
|
ansible.builtin.command: "{{ chroot_command }} apt update"
|
|
register: bootstrap_ubuntu_update_result
|
|
changed_when: bootstrap_ubuntu_update_result.rc == 0
|
|
|
|
- name: Install extra packages
|
|
ansible.builtin.command: "{{ chroot_command }} apt install -y {{ bootstrap_ubuntu_extra }}"
|
|
register: bootstrap_ubuntu_extra_result
|
|
changed_when: bootstrap_ubuntu_extra_result.rc == 0
|