1234567891011121314151617181920212223242526272829303132333435 |
- # Copyright 2021 Dell Inc. or its subsidiaries. All Rights Reserved.
- #
- # 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.
- ---
- # vars file for control_plane_customiso
- #Usage: check_prerequisites.yml
- iso_mount_path: /mnt/iso/
- iso_mount_check_fail_msg: "ISO file not mounted. Ensure /mnt/iso path is mounted with {{ provision_os }} ISO file."
- #Usage: edit_iso_config.yml
- tmp_iso_dir: /tmp/iso/
- idrac_centos_ks: centos7.cfg
- idrac_rocky_ks: rocky8.cfg
- file_permission: 0744
- isolinux_cfg_path: isolinux/isolinux.cfg
- grub_cfg_path: EFI/BOOT/grub.cfg
- #Usage: create_unattended_iso.yml
- centos_iso_filename: unattended_centos7.iso
- rocky_iso_filename: unattended_rocky8.iso
- custom_iso_success_msg: "Unattended ISO file created successfully"
- custom_iso_fail_msg: "Unattended ISO file creation failed. Ensure /mnt/iso path is mounted with valid centos minimal ISO file."
- management_station_ip_file: "management_station_ip.txt"
|