| Server IP : 85.214.239.14 / Your IP : 216.73.216.108 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | 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 iDRAC users attributes
gather_facts: False
collections:
- dellemc.openmanage
tasks:
- name: Configure the create iDRAC users attributes
idrac_user:
idrac_ip: "{{ idrac_ip }}"
idrac_user: "{{ idrac_user }}"
idrac_password: "{{ idrac_password }}"
ca_path: "/path/to/ca_cert.pem"
state: "present"
user_name: "user_name"
user_password: "user_password"
privilege: "Administrator"
ipmi_lan_privilege: "User"
enable: "true"
sol_enable: "true"
protocol_enable: "true"
authentication_protocol: "MD5"
privacy_protocol: "DES"
tags:
- create-user
- name: Configure the modify iDRAC users attributes
idrac_user:
idrac_ip: "{{ idrac_ip }}"
idrac_user: "{{ idrac_user }}"
idrac_password: "{{ idrac_password }}"
ca_path: "/path/to/ca_cert.pem"
action: "present"
user_name: "user_name"
new_user_name: "new_user_name"
privilege: "Administrator"
ipmi_lan_privilege: "User"
enable: "true"
sol_enable: "true"
protocol_enable: "true"
authentication_protocol: "MD5"
privacy_protocol: "DES"
tags:
- modify-user
- name: Configure the modify iDRAC username and password attributes.
idrac_user:
idrac_ip: "{{ idrac_ip }}"
idrac_user: "{{ idrac_user }}"
idrac_password: "{{ idrac_password }}"
ca_path: "/path/to/ca_cert.pem"
action: "present"
user_name: "user_name"
new_user_name: "new_user_name"
user_password: "user_password"
tags:
- modify-username
- name: Configure the delete iDRAC users attributes
idrac_user:
idrac_ip: "{{ idrac_ip }}"
idrac_user: "{{ idrac_user }}"
idrac_password: "{{ idrac_password }}"
ca_path: "/path/to/ca_cert.pem"
state: "absent"
user_name: "user_name"
tags:
- remove-user