diff options
author | David Kupka <dkupka@redhat.com> | 2014-10-22 09:07:44 -0400 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2014-11-05 15:22:51 +0100 |
commit | 364d466fd7def3589ddb9e4a9f8d73fc2df80439 (patch) | |
tree | 6a453eae45f12c1aa496ae20ade51eb7f35c5e1a /ipaserver/install/dsinstance.py | |
parent | 0b08043c37210d0f86cb0c66d659acafda0fb529 (diff) | |
download | freeipa-364d466fd7def3589ddb9e4a9f8d73fc2df80439.tar.gz freeipa-364d466fd7def3589ddb9e4a9f8d73fc2df80439.tar.xz freeipa-364d466fd7def3589ddb9e4a9f8d73fc2df80439.zip |
Respect UID and GID soft static allocation.
https://fedoraproject.org/wiki/Packaging:UsersAndGroups?rd=Packaging/UsersAndGroups#Soft_static_allocation
https://fedorahosted.org/freeipa/ticket/4585
Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipaserver/install/dsinstance.py')
-rw-r--r-- | ipaserver/install/dsinstance.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/dsinstance.py b/ipaserver/install/dsinstance.py index 6fcf916ca..06c13c21d 100644 --- a/ipaserver/install/dsinstance.py +++ b/ipaserver/install/dsinstance.py @@ -151,7 +151,7 @@ def is_ds_running(server_id=''): def create_ds_user(): """Create DS user/group if it doesn't exist yet.""" - installutils.create_system_user( + tasks.create_system_user( name=DS_USER, group=DS_USER, homedir=paths.VAR_LIB_DIRSRV, |