interface_config.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Copyright 2021 Dell Inc. or its subsidiaries. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. ---
  15. - name: Apply interface configuration for- "{{ inventory_hostname }}"
  16. uri:
  17. url: http://{{ inventory_hostname }}/admin/launch?script=json
  18. method: POST
  19. body_format: json
  20. headers:
  21. Cookie: "{{ login.set_cookie.split(';')[0] }}"
  22. body:
  23. {
  24. "commands":
  25. [
  26. "interface {{ item.key }}",
  27. "description {{ item.value.description | default('<none>') }}",
  28. "{{ item.value.config | default([]) |join(', ') }}"
  29. ]
  30. }
  31. register: interface_conf
  32. - name: Status check for- "{{ inventory_hostname }}"
  33. fail:
  34. msg: "{{ results }}"
  35. when: results.status != "OK"
  36. loop: "{{ interface_conf.json.results }}"
  37. loop_control:
  38. loop_var: results
  39. label: "{{ results.executed_command }}"