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 / theforeman / foreman / roles / convert2rhel / tasks / host_groups.yml
Size: Mime:
---
- name: "Create '{{ foreman_convert2rhel_hostgroup7 }}' host group"
  theforeman.foreman.hostgroup:
    username: "{{ foreman_username }}"
    password: "{{ foreman_password }}"
    server_url: "{{ foreman_server_url }}"
    validate_certs: "{{ foreman_validate_certs | default(omit) }}"
    organization: "{{ foreman_organization }}"
    name: "{{ foreman_convert2rhel_hostgroup7 }}"
    lifecycle_environment: "{{ foreman_convert2rhel_lifecycle_env }}"
    content_view: "{{ foreman_convert2rhel_content_view }}"
    activation_keys: "{{ foreman_convert2rhel_key_centos7 }}"
  when: foreman_content_rhel_enable_rhel7

- name: "Create '{{ foreman_convert2rhel_hostgroup8 }}' host group"
  theforeman.foreman.hostgroup:
    username: "{{ foreman_username }}"
    password: "{{ foreman_password }}"
    server_url: "{{ foreman_server_url }}"
    validate_certs: "{{ foreman_validate_certs | default(omit) }}"
    organization: "{{ foreman_organization }}"
    name: "{{ foreman_convert2rhel_hostgroup8 }}"
    lifecycle_environment: "{{ foreman_convert2rhel_lifecycle_env }}"
    content_view: "{{ foreman_convert2rhel_content_view }}"
    activation_keys: "{{ foreman_convert2rhel_key_centos8 }}"
  when: foreman_content_rhel_enable_rhel8

- name: "Create '{{ foreman_convert2rhel_hostgroup_oracle7 }}' host group"
  theforeman.foreman.hostgroup:
    username: "{{ foreman_username }}"
    password: "{{ foreman_password }}"
    server_url: "{{ foreman_server_url }}"
    validate_certs: "{{ foreman_validate_certs | default(omit) }}"
    organization: "{{ foreman_organization }}"
    name: "{{ foreman_convert2rhel_hostgroup_oracle7 }}"
    lifecycle_environment: "{{ foreman_convert2rhel_lifecycle_env }}"
    content_view: "{{ foreman_convert2rhel_content_view }}"
    activation_keys: "{{ foreman_convert2rhel_key_oracle7 }}"
  when: foreman_convert2rhel_enable_oracle7

- name: "Create '{{ foreman_convert2rhel_hostgroup_oracle8 }}' host group"
  theforeman.foreman.hostgroup:
    username: "{{ foreman_username }}"
    password: "{{ foreman_password }}"
    server_url: "{{ foreman_server_url }}"
    validate_certs: "{{ foreman_validate_certs | default(omit) }}"
    organization: "{{ foreman_organization }}"
    name: "{{ foreman_convert2rhel_hostgroup_oracle8 }}"
    lifecycle_environment: "{{ foreman_convert2rhel_lifecycle_env }}"
    content_view: "{{ foreman_convert2rhel_content_view }}"
    activation_keys: "{{ foreman_convert2rhel_key_oracle8 }}"
  when: foreman_convert2rhel_enable_oracle8