Skip to content
Snippets Groups Projects
Select Git revision
  • be9a2db4047bafa707a6c9df5a658dde11d54a8b
  • master default protected
  • v1.15.0
  • 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
22 results

setup.cfg

Blame
  • user avatar
    Sam Morris authored and Rafael Guterres Jeffman committed
    There is a new certificate management module placed in the plugins
    folder:
    
        plugins/modules/ipacert.py
    
    The certificate module allows to request, revoke, release and retrieve
    certificates for users, hosts and services.
    
    Here is the documentation for the module:
    
        README-cert.md
    
    New example playbooks have been added:
    
        playbooks/cert/cert-hold.yml
        playbooks/cert/cert-release.yml
        playbooks/cert/cert-request-host.yml
        playbooks/cert/cert-request-service.yml
        playbooks/cert/cert-request-user.yml
        playbooks/cert/cert-retrieve.yml
        playbooks/cert/cert-revoke.yml
    
    New tests for the module can be found at:
    
        tests/cert/test_cert_client_context.yml
        tests/cert/test_cert_host.yml
        tests/cert/test_cert_service.yml
        tests/cert/test_cert_user.yml
    
    The module has been co-authored by Sam Morris (@yrro) and Rafael
    Guterres Jeffman (@rjeffman).
    87e1edf5
    History
    setup.cfg 2.38 KiB
    [metadata]
    name = ansible-freeipa
    summary = Ansible roles for FreeIPA
    description-file =
        README.md
    home-page = https://github.com/freeipa/ansible-freeipa
    classifier =
        Intended Audience :: Developers
        Intended Audience :: System Administrators
        Operating System :: POSIX :: Linux
    
    [pbr]
    warnerrors = True
    
    [wheel]
    universal = 1
    
    [files]
    data_files =
        /usr/share/ansible/roles/ipaclient = roles/ipaclient/*
        /usr/share/ansible/roles/ipaserver = roles/ipaserver/*
        /usr/share/ansible/roles/ipareplica = roles/ipareplica/*
    
    [flake8]
    extend-ignore = E203, D1, D212, D203, D400, D401
    exclude = .git,__pycache__,.tox,.venv,.cache,.ansible-freeipa-tests
    per-file-ignores =
        plugins/*:E402
        roles/*:E402
    
    [pydocstyle]
    inherit = false
    ignore = D1,D212,D203
    
    [pylint.MASTER]
    disable =
        consider-using-f-string,  # f-string is not supported on Python2
        unspecified-encoding, # open() does not provide `encoding` in Python2
        use-maxsplit-arg,
        redundant-u-string-prefix,
        c-extension-no-member,
        missing-module-docstring,
        missing-class-docstring,
        missing-function-docstring,
        wrong-import-order,
        ungrouped-imports,
        wrong-import-position,
        protected-access,
        no-name-in-module,
        too-many-arguments,
        too-many-statements,
        too-many-lines,
        raise-missing-from,
        duplicate-code,
        broad-except,
        too-many-branches,
        too-many-locals,
        fixme
    
    [pylint.BASIC]
    good-names =
        ex, i, j, k, Run, _, e, x, dn, cn, ip, os, unicode, __metaclass__, ds,
        dt, ca,
        # These are utils tools, and not part of the released collection.
        galaxyfy-playbook, galaxyfy-README, galaxyfy-module-EXAMPLES,
        module_EXAMPLES
    
    
    [pylint.IMPORTS]
    ignored-modules =