summaryrefslogtreecommitdiffstats
path: root/ansible_collections/dellemc/openmanage/playbooks/idrac/idrac_license.yml
blob: 2304fa5b6f2a82f971d8e4abe50e899a33daca41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
---
- name: Dell OpenManage Ansible iDRAC License Management.
  hosts: idrac
  gather_facts: false

  tasks:
    - name: Export a license from iDRAC to local
      dellemc.openmanage.idrac_license:
        idrac_ip: "192.168.0.1"
        idrac_user: "username"
        idrac_password: "password"
        ca_path: "/path/to/ca_cert.pem"
        license_id: "LICENSE_123"
        export: true
        share_parameters:
          share_type: "local"
          share_name: "/path/to/share"
          file_name: "license_file"
      delegate_to: localhost

    - name: Export a license from iDRAC to NFS share
      dellemc.openmanage.idrac_license:
        idrac_ip: "192.168.0.1"
        idrac_user: "username"
        idrac_password: "password"
        ca_path: "/path/to/ca_cert.pem"
        license_id: "LICENSE_123"
        export: true
        share_parameters:
          share_type: "nfs"
          share_name: "/path/to/share"
          file_name: "license_file"
          ip_address: "192.168.0.1"
      delegate_to: localhost

    - name: Export a license from iDRAC to CIFS share
      dellemc.openmanage.idrac_license:
        idrac_ip: "192.168.0.1"
        idrac_user: "username"
        idrac_password: "password"
        ca_path: "/path/to/ca_cert.pem"
        license_id: "LICENSE_123"
        export: true
        share_parameters:
          share_type: "cifs"
          share_name: "/path/to/share"
          file_name: "license_file"
          ip_address: "192.168.0.1"
          username: "username"
          password: "password"
          workgroup: "workgroup"
      delegate_to: localhost

    - name: Export a license from iDRAC to HTTP share via proxy
      dellemc.openmanage.idrac_license:
        idrac_ip: "192.168.0.1"
        idrac_user: "username"
        idrac_password: "password"
        ca_path: "/path/to/ca_cert.pem"
        license_id: "LICENSE_123"
        export: true
        share_parameters:
          share_type: "http"
          share_name: "/path/to/share"
          file_name: "license_file"
          ip_address: "192.168.0.1"
          username: "username"
          password: "password"
          proxy_support: "parameters_proxy"
          proxy_type: socks
          proxy_server: "192.168.0.2"
          proxy_port: 1080
          proxy_username: "proxy_username"
          proxy_password: "proxy_password"
      delegate_to: localhost

    - name: Export a license from iDRAC to HTTPS share
      dellemc.openmanage.idrac_license:
        idrac_ip: "192.168.0.1"
        idrac_user: "username"
        idrac_password: "password"
        ca_path: "/path/to/ca_cert.pem"
        license_id: "LICENSE_123"
        export: true
        share_parameters:
          share_type: "https"
          share_name: "/path/to/share"
          file_name: "license_file"
          ip_address: "192.168.0.1"
          username: "username"
          password: "password"
          ignore_certificate_warning: "on"
      delegate_to: localhost

    - name: Import a license to iDRAC from local
      dellemc.openmanage.idrac_license:
        idrac_ip: 198.162.0.1
        idrac_user: "username"
        idrac_password: "password"
        ca_path: "/path/to/ca_cert.pem"
        import: true
        share_parameters:
          file_name: "license_file_name.xml"
          share_type: local
          share_name: "/path/to/share"
      delegate_to: localhost

    - name: Import a license to iDRAC from NFS share
      dellemc.openmanage.idrac_license:
        idrac_ip: 198.162.0.1
        idrac_user: "username"
        idrac_password: "password"
        ca_path: "/path/to/ca_cert.pem"
        import: true
        share_parameters:
          file_name: "license_file_name.xml"
          share_type: nfs
          ip_address: "192.168.0.1"
          share_name: "/path/to/share"
      delegate_to: localhost

    - name: Import a license to iDRAC from CIFS share
      dellemc.openmanage.idrac_license:
        idrac_ip: 198.162.0.1
        idrac_user: "username"
        idrac_password: "password"
        ca_path: "/path/to/ca_cert.pem"
        import: true
        share_parameters:
          file_name: "license_file_name.xml"
          share_type: cifs
          ip_address: "192.168.0.1"
          share_name: "/path/to/share"
          username: "username"
          password: "password"
      delegate_to: localhost

    - name: Import a license to iDRAC from HTTP share
      dellemc.openmanage.idrac_license:
        idrac_ip: 198.162.0.1
        idrac_user: "username"
        idrac_password: "password"
        ca_path: "/path/to/ca_cert.pem"
        import: true
        share_parameters:
          file_name: "license_file_name.xml"
          share_type: http
          ip_address: "192.168.0.1"
          share_name: "/path/to/share"
          username: "username"
          password: "password"
      delegate_to: localhost

    - name: Import a license to iDRAC from HTTPS share via proxy
      dellemc.openmanage.idrac_license:
        idrac_ip: 198.162.0.1
        idrac_user: "username"
        idrac_password: "password"
        ca_path: "/path/to/ca_cert.pem"
        import: true
        share_parameters:
          file_name: "license_file_name.xml"
          share_type: https
          ip_address: "192.168.0.1"
          share_name: "/path/to/share"
          username: "username"
          password: "password"
          proxy_support: "parameters_proxy"
          proxy_server: "192.168.0.2"
          proxy_port: 808
          proxy_username: "proxy_username"
          proxy_password: "proxy_password"
      delegate_to: localhost

    - name: Delete a License from iDRAC
      dellemc.openmanage.idrac_license:
        idrac_ip: 198.162.0.1
        idrac_user: "username"
        idrac_password: "password"
        ca_path: "/path/to/ca_cert.pem"
        license_id: "LICENCE_123"
        delete: true
      delegate_to: localhost