Skip to content
Snippets Groups Projects
Select Git revision
  • 3109e9d1bcda2d3c7b596da036def76a911bc297
  • master default protected
  • v1.14.7
  • v1.14.6
  • v1.14.5
  • v1.14.4
  • v1.14.3
  • v1.14.2
  • v1.14.1
  • v1.14.0
  • v1.13.2
  • v1.13.1
  • v1.13.0
  • v1.12.1
  • v1.12.0
  • v1.11.1
  • v1.11.0
  • v1.10.0
  • v1.9.2
  • v1.9.1
  • v1.9.0
  • v1.8.4
22 results

setup.cfg

Blame
  • README-server.md 6.18 KiB

    Server module

    Description

    The server module allows to ensure presence and absence of servers. The module requires an existing server, the deployment of a new server can not be done with the module.

    Features

    • Server management

    Supported FreeIPA Versions

    FreeIPA versions 4.4.0 and up are supported by the ipaserver module.

    Requirements

    Controller

    • Ansible version: 2.8+

    Node

    • Supported FreeIPA version (see above)

    Usage

    Example inventory file

    [ipaserver]
    ipaserver.test.local

    Example playbook to make sure server "server.example.com" is already present in the topology:

    ---
    - name: Playbook to manage IPA server.
      hosts: ipaserver
      become: yes
    
      tasks:
      - ipaserver:
          ipaadmin_password: SomeADMINpassword
          name: server.example.com

    This task is not deploying a new server, it is only checking if the server eists. It will therefore fail if the server does not exist.

    Example playbook to make sure server "server.example.com" has location mylocation:

    ---
    - name: Playbook to manage IPA server.
      hosts: ipaserver
      become: yes
    
      tasks:
      - ipaserver:
          ipaadmin_password: SomeADMINpassword
          name: server.example.com
          location: mylocation