summaryrefslogtreecommitdiff
path: root/roles/dellos6/bootstrap
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2022-11-21 00:30:08 +0100
committerChristian Pointner <equinox@spreadspace.org>2022-11-21 00:30:08 +0100
commitfa5c726f9f39d834962f5157628bddfe85e026b6 (patch)
tree06ea51c17ff548cd6cf2188d481a8df914e4242c /roles/dellos6/bootstrap
parentMerge branch 'topic/wireguard-extern-vpn' (diff)
some more cleanups and fixes
Diffstat (limited to 'roles/dellos6/bootstrap')
-rw-r--r--roles/dellos6/bootstrap/tasks/main.yml10
1 files changed, 4 insertions, 6 deletions
diff --git a/roles/dellos6/bootstrap/tasks/main.yml b/roles/dellos6/bootstrap/tasks/main.yml
index d6442e8f..af3bbcf1 100644
--- a/roles/dellos6/bootstrap/tasks/main.yml
+++ b/roles/dellos6/bootstrap/tasks/main.yml
@@ -1,19 +1,17 @@
---
- name: only one ssh key for root?
- delegate_to: localhost
- when: (ssh_keys_root | length) > 1
- fail:
- msg: "users may have at the most one ssh-key"
+ assert:
+ that: (ssh_keys_root | length) > 1
+ fail_msg: "users may have at the most one ssh-key"
- name: generate initial configuration
- delegate_to: localhost
pause:
prompt: "\n## Please apply the following configuration using the serial console!!!\n\n{{ lookup('template', 'init.j2') }}\n\n## end .. press ENTER to continue!!!!!\n"
- name: get config facts from the switch
dellos6_facts:
gather_subset:
- - hardware
+ - hardware
register: switch_facts
- debug: