f18c26a9b3
Moved Ansible specific elements to playbooks/
42 lines
2.2 KiB
YAML
42 lines
2.2 KiB
YAML
# Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
---
|
|
- name: "Error if variable baremetal_csv_file is not defined"
|
|
local_action: fail msg="baremetal_csv_file must be defined for this playbook to execute, please pass option '-e baremetal_csv_file=<path/to/file>'"
|
|
when: baremetal_csv_file is not defined
|
|
- name: "Validate that CSV file exists"
|
|
local_action: stat path={{ baremetal_csv_file }}
|
|
register: test_baremetal_csv_file
|
|
- name: "Error if file does not exist."
|
|
local_action: fail msg="The variable defined for baremetal_csv_file is not to a file. Please define a file and try again."
|
|
when: test_baremetal_csv_file.stat.isreg == false
|
|
- name: "Verify CoreOS kernel is present."
|
|
local_action: stat path={{ http_boot_folder }}/coreos_production_pxe.vmlinuz
|
|
register: test_core_os_kernel_present
|
|
- name: "Error if the CoreOS kernel is missing."
|
|
local_action: fail msg="CoreOS kernel not found. Consider re-running setup."
|
|
when: test_core_os_kernel_present.stat.exists == false
|
|
- name: "Verify CoreOS ramdisk is present."
|
|
local_action: stat path={{ http_boot_folder }}/coreos_production_pxe_image-oem.cpio.gz
|
|
register: test_core_os_image_present
|
|
- name: "Error if the CoreOS ramdisk is missing."
|
|
local_action: fail msg="CoreOS ramdisk was not found. Consider re-running setup."
|
|
when: test_core_os_image_present.stat.exists == false
|
|
- name: "Verify that deployment image is present."
|
|
local_action: stat path={{deploy_image}}
|
|
register: test_deploy_image
|
|
- name: "Error if deployment image is missing."
|
|
local_action: fail msg="Deployment image is missing. Consider re-running setup."
|
|
when: test_deploy_image.stat.exists == false
|