
The RHEL suppplied ansible-freeipa RPM package installs the modules at the default ansible module path and not as a collection. This caused problems for the end user. This also changes the linter job to run on CentOS, since the ansible-freeipa package is not available on Ubuntu. This also reverts commit 2cc09a2b68c5b64b35742de91d4e7c0cd73f188c. Reason for revert: We get this error: error={"msg": "template error while templating string: cannot import name 'environmentfilter' from 'jinja2.filters' (/usr/lib/python3.9/site-packages/ansible/_vendor/jinja2/filters.py)\n line 0. String: {{ 'A' if record_value | ansible.utils.ipv4 else 'AAAA' }}"} Change-Id: I7df25fb945da1d98c68fe4113a09afdc2f2c5687
53 lines
1.5 KiB
YAML
53 lines
1.5 KiB
YAML
---
|
|
# Copyright 2020 Red Hat, Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
# The tasks in this file perform the registration process for a service.
|
|
#
|
|
# The following variable are required:
|
|
# - {item} : which is an ordered tuple of the form:
|
|
# -- { sub_host, service }
|
|
#
|
|
# An example of this is:
|
|
# { "controller-5.storagemgmt.example.com", "haproxy" }
|
|
#
|
|
# At this time, the final value in the tuple is unused.
|
|
|
|
- name: set variables
|
|
set_fact:
|
|
sub_host: "{{ item.0 }}"
|
|
service: "{{ item.1 }}"
|
|
|
|
- name: add sub_host
|
|
ipahost:
|
|
fqdn: "{{ sub_host }}"
|
|
force: true
|
|
state: present
|
|
become: true
|
|
|
|
- name: add service
|
|
ipaservice:
|
|
name: "{{ service }}/{{ sub_host }}"
|
|
force: true
|
|
state: present
|
|
become: true
|
|
|
|
- name: add host to managed_hosts if needed (shell)
|
|
shell: |
|
|
ipa service-add-host --hosts "{{ base_server_fqdn }}" "{{ service }}"/"{{ sub_host }}"
|
|
register: service_add_out
|
|
failed_when: service_add_out.failed and 'This entry is already a member' not in service_add_out.stdout
|
|
become: true
|