ansible-playbooks/playbookconfig/src/playbooks/roles/common/host-unlock/tasks/main.yml

14 lines
259 B
YAML

---
#
# Copyright (c) 2021 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
- name: Unlock host
shell: source /etc/platform/openrc; system host-unlock {{ target_host }}
retries: 10
delay: 30
register: result
until: result.rc == 0