Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ansible / dellemc / os10 / roles / os10_users / tasks / main.yml
Size: Mime:
---
# tasks file for os10
 - name: "Generating users configuration for os10"
   template:
      src: os10_users.j2
      dest: "{{ build_dir }}/users10_{{ hostname }}.conf.part"
   when: (ansible_network_os is defined and ansible_network_os == "dellemc.os10.os10") and ((os10_cfg_generate | default('False')) | bool)
#   notify: save config os10
   register: generate_output

 - name: "Provisioning users configuration for os10"
   os10_config:
      src: os10_users.j2
   when: (ansible_network_os is defined and ansible_network_os == "dellemc.os10.os10")
#   notify: save config os10
   register: output