├── .gitignore ├── README.md ├── configuration └── freeipa-config.xml ├── kerberos.json ├── metainfo.xml ├── package ├── .hash └── scripts │ ├── master.py │ └── params.py ├── remove.sh └── screenshots ├── screenshot-browse-LDAP.png ├── screenshot-error.png ├── screenshot-freeipa-stack-config.png └── screenshot-freeipa-stack.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .class 3 | .swp 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hortonworks-gallery/ambari-freeipa-service/HEAD/README.md -------------------------------------------------------------------------------- /configuration/freeipa-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hortonworks-gallery/ambari-freeipa-service/HEAD/configuration/freeipa-config.xml -------------------------------------------------------------------------------- /kerberos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hortonworks-gallery/ambari-freeipa-service/HEAD/kerberos.json -------------------------------------------------------------------------------- /metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hortonworks-gallery/ambari-freeipa-service/HEAD/metainfo.xml -------------------------------------------------------------------------------- /package/.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hortonworks-gallery/ambari-freeipa-service/HEAD/package/.hash -------------------------------------------------------------------------------- /package/scripts/master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hortonworks-gallery/ambari-freeipa-service/HEAD/package/scripts/master.py -------------------------------------------------------------------------------- /package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hortonworks-gallery/ambari-freeipa-service/HEAD/package/scripts/params.py -------------------------------------------------------------------------------- /remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hortonworks-gallery/ambari-freeipa-service/HEAD/remove.sh -------------------------------------------------------------------------------- /screenshots/screenshot-browse-LDAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hortonworks-gallery/ambari-freeipa-service/HEAD/screenshots/screenshot-browse-LDAP.png -------------------------------------------------------------------------------- /screenshots/screenshot-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hortonworks-gallery/ambari-freeipa-service/HEAD/screenshots/screenshot-error.png -------------------------------------------------------------------------------- /screenshots/screenshot-freeipa-stack-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hortonworks-gallery/ambari-freeipa-service/HEAD/screenshots/screenshot-freeipa-stack-config.png -------------------------------------------------------------------------------- /screenshots/screenshot-freeipa-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hortonworks-gallery/ambari-freeipa-service/HEAD/screenshots/screenshot-freeipa-stack.png --------------------------------------------------------------------------------