This commit is contained in:
2024-07-03 12:38:09 +00:00
parent 7bc2e86c68
commit 9a4bbb05a8
16 changed files with 142 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
---
# tasks file for dump_debconf_database
- name: Install debconf-utils
apt:
name: debconf-utils
state: present
- name: Create preseed file
command: echo "#_preseed_V1" > /root/preseed.txt
- name: Append installer's debconf database to the file
command: debconf-get-selections --installer >> /root/preseed.txt
- name: Append debconf database to the file
command: debconf-get-selections >> /root/preseed.txt