Package Base Details: freeipa

Git Clone URL: https://aur.archlinux.org/freeipa.git (read-only, click to copy)
Keywords: freeipa identity management policy trusts
Submitter: chenxiaolong
Maintainer: patlefort
Last Packager: patlefort
Votes: 22
Popularity: 0.000404
First Submitted: 2012-11-15 23:50 (UTC)
Last Updated: 2024-01-27 15:47 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

sumebrius commented on 2018-09-02 06:43 (UTC) (edited on 2018-09-02 06:46 (UTC) by sumebrius)

Building this package doesn't seem to create the file /usr/lib/pythonX.Y/site-packages/ipaplatform/init.py, and so anything using that module crashes. eg. I'm getting the below traceback on running ipa-client-install after installing this package:

Traceback (most recent call last):
  File "/usr/bin/ipa-client-install", line 22, in <module>
    from ipaclient.install import ipa_client_install
  File "/usr/lib/python2.7/site-packages/ipaclient/install/ipa_client_install.py", line 5, in <module>
    from ipaclient.install import client
  File "/usr/lib/python2.7/site-packages/ipaclient/install/client.py", line 35, in <module>
    from ipalib import api, errors, x509
  File "/usr/lib/python2.7/site-packages/ipalib/__init__.py", line 919, in <module>
    from ipalib import plugable
  File "/usr/lib/python2.7/site-packages/ipalib/plugable.py", line 42, in <module>
    from ipalib.config import Env
  File "/usr/lib/python2.7/site-packages/ipalib/config.py", line 43, in <module>
    from ipaplatform.tasks import tasks
ImportError: No module named ipaplatform.tasks

beermann commented on 2018-01-03 23:24 (UTC)

When trying to install on Antagos i get the following error, is there anyway to fix this?

checking supported IPA platform... configure: error: IPA platform antergos is not supported

thanos commented on 2017-03-10 19:57 (UTC)

Rebuilding python2-gssapi fixed the problem.

grubber commented on 2017-03-10 17:54 (UTC)

@thanos, it is indeed odd. What happens when you run "python2 -c 'import gssapi'"?

thanos commented on 2017-03-10 15:22 (UTC)

Package refuses to build and it fails on make. Can't find gssapi module, which is odd, as it's installed and satisfied by the dependencies. http://pastebin.com/Agd6jX2b

seberm commented on 2016-12-19 11:50 (UTC)

Please add missing build dependency - dbus-glib package must be installed. Thanks!

Lompik commented on 2016-09-03 13:38 (UTC)

I tested version 4.4. Overall it seems to work. Thanks for bundling this. There is still an issue domainname service which doesn't exist on Arch. The error is " Command '/bin/systemctl restart domainname.service' returned non-zero exit status 5". That will fail the ipa-client-install script but most things seems functional after that. Also, dependency of python-ipalib and python-ipaclient aren't discovered automatically by yaourt when building but I guess this is not your problem.

grubber commented on 2016-06-28 05:24 (UTC)

Lompik, thanks for the report. My plan is to update the package to 4.4 once it's released (should be this week), as there are multiple portability improvements.

Lompik commented on 2016-06-07 14:13 (UTC)

I had two fatal errors testing the WIP ipa-client-install(4.2.3): - Arch does not have a systemd domainname service (see https://fedorahosted.org/releases/i/n/initscripts/initscripts-9.66.tar.bz2 for feodra's one): > subprocess.CalledProcessError: Command ''/bin/systemctl' 'restart' 'domainname.service'' returned non-zero exit status - issue with sshd service definition (get_config_dir() returns none instead of '/etc/sshd'): > File "/usr/bin/ipa-client-install", line 1202, in configure_sssd_conf > ssh_dir = services.knownservices.sshd.get_config_dir() my fix was to replace archlinux_service_class_factory : #def archlinux_service_class_factory(name): # return ArchLinuxService(name) from ipaplatform.redhat import services as redhat_services def archlinux_service_class_factory(name): return redhat_services.redhat_service_class_factory(name)