Back to macOS for virtualbox (#10)

This commit is contained in:
Greg Hellings
2022-06-19 19:59:04 -05:00
committed by GitHub
parent 214b1974ca
commit cfd9ea5d56
4 changed files with 13 additions and 16 deletions
@@ -0,0 +1,11 @@
- hosts: all
tasks:
- name: Read init file
ansible.builtin.slurp:
path: /etc/default/console-setup
register: __slurped
- name: Validate desired string is present
assert:
that: >-
'ACTIVE_CONSOLES="/dev/tty1"' in ( __slurped["content"] | b64decode )