Server IP : 85.214.239.14 / Your IP : 3.144.35.147 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/dellemc/openmanage/playbooks/idrac/ |
Upload File : |
--- - hosts: idrac connection: local name: Configure the boot order settings gather_facts: False collections: - dellemc.openmanage tasks: - name: Configure the system boot options settings. idrac_boot: idrac_ip: "{{ idrac_ip }}" idrac_user: "{{ idrac_user }}" idrac_password: "{{ idrac_password }}" ca_path: "/path/to/ca_cert.pem" boot_options: - display_name: Hard drive C enabled: true - boot_option_reference: NIC.PxeDevice.2-1 enabled: true tags: boot-option - name: Configure the boot order settings. idrac_boot: idrac_ip: "{{ idrac_ip }}" idrac_user: "{{ idrac_user }}" idrac_password: "{{ idrac_password }}" ca_path: "/path/to/ca_cert.pem" boot_order: - Boot0001 - Boot0002 - Boot0004 - Boot0003 tags: boot-order - name: Configure the boot source override mode. idrac_boot: idrac_ip: "{{ idrac_ip }}" idrac_user: "{{ idrac_user }}" idrac_password: "{{ idrac_password }}" ca_path: "/path/to/ca_cert.pem" boot_source_override_mode: legacy boot_source_override_target: cd boot_source_override_enabled: once tags: boot-mode - name: Configure the UEFI target settings. idrac_boot: idrac_ip: "{{ idrac_ip }}" idrac_user: "{{ idrac_user }}" idrac_password: "{{ idrac_password }}" ca_path: "/path/to/ca_cert.pem" boot_source_override_mode: uefi boot_source_override_target: uefi_target uefi_target_boot_source_override: "VenHw(3A191845-5F86-4E78-8FCE-C4CFF59F9DAA)" tags: uefi-target - name: Configure the boot source override mode as pxe. idrac_boot: idrac_ip: "{{ idrac_ip }}" idrac_user: "{{ idrac_user }}" idrac_password: "{{ idrac_password }}" ca_path: "/path/to/ca_cert.pem" boot_source_override_mode: legacy boot_source_override_target: pxe boot_source_override_enabled: continuous tags: pxe-boot-mode