Skip to content

Commit

Permalink
Fix FreeIPA domain option
Browse files Browse the repository at this point in the history
It should always have been -n, but -d worked by coincidence until
recently.
  • Loading branch information
sgallagher committed Jul 27, 2017
1 parent d59f268 commit 29dd3ba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/roles/domaincontroller/role.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def do_deploy_async(self, values, sender=None):
ipa_install_args = [
'ipa-server-install', '-U',
'-r', values['realm_name'],
'-d', values['domain_name'],
'-n', values['domain_name'],
'-p', values['dm_password'],
'-a', values['admin_password'],
]
Expand Down
5 changes: 4 additions & 1 deletion rolekit.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: A server daemon with D-Bus interface providing a server roles
Name: rolekit
Version: 0.5.1
Version: 0.5.2
Release: 0%{?dist}
URL: https://github.com/libre-server/rolekit
License: GPLv2+
Expand Down Expand Up @@ -120,6 +120,9 @@ make install DESTDIR=%{buildroot}


%changelog
* Wed Jul 26 2017 Stephen Gallagher <[email protected]> - 0.5.2-0
- Fix bug in FreeIPA domain setting

* Wed Feb 03 2016 Stephen Gallagher <[email protected]> - 0.5.1-0
- Upstream preview release 0.5.1
- Simplify creating systemd units for roles.
Expand Down

0 comments on commit 29dd3ba

Please sign in to comment.