summaryrefslogtreecommitdiff
path: root/roles
diff options
context:
space:
mode:
Diffstat (limited to 'roles')
-rw-r--r--roles/installer/openbsd/autoinstall/tasks/main.yml10
-rw-r--r--roles/vm/install/tasks/main.yml9
2 files changed, 14 insertions, 5 deletions
diff --git a/roles/installer/openbsd/autoinstall/tasks/main.yml b/roles/installer/openbsd/autoinstall/tasks/main.yml
index a4e63f3f..cb9975de 100644
--- a/roles/installer/openbsd/autoinstall/tasks/main.yml
+++ b/roles/installer/openbsd/autoinstall/tasks/main.yml
@@ -56,8 +56,8 @@
args:
chdir: "{{ obsd_autoinstall_tmpdir }}/"
-# - print instructions
-# * attach to console
-# * select (S)hell
-# * # mount_cd9660 /dev/cd0c /mnt && cp /mnt/etc/auto_install.conf / && autoinstall
-#
+- name: set additional installer info
+ set_fact:
+ installer_manual_steps_msg: |
+ * at the installer prompt select: (S)hell
+ * # mount_cd9660 /dev/cd0c /mnt && cp /mnt/etc/auto_install.conf / && autoinstall
diff --git a/roles/vm/install/tasks/main.yml b/roles/vm/install/tasks/main.yml
index ab94d4e5..bc31967a 100644
--- a/roles/vm/install/tasks/main.yml
+++ b/roles/vm/install/tasks/main.yml
@@ -62,6 +62,15 @@
- debug:
msg: "you can check on the status of the installer running this command 'virsh console {{ hostname }}' on host {{ inventory_hostname }}."
+ - when: installer_manual_steps_msg is defined
+ pause:
+ prompt: |
+ Mind that this installer needs manual steps to be performed:
+
+ {{ installer_manual_steps_msg | indent(2) }}
+
+ When done press enter to continue or Ctrl-C + 'A' to abort.
+
- name: wait for installer to finish or crash
wait_for_virt:
name: "{{ hostname }}"