diff options
author | Endi Sukma Dewata <edewata@redhat.com> | 2011-12-09 15:01:06 -0600 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2012-01-31 08:40:00 -0600 |
commit | 6bd2f5ba350f7b21fc2da7acec862d342423b3d9 (patch) | |
tree | 28a0ced23879a0250e061cda5852c4586e6ea0ab | |
parent | 191f05e4774a2b62f43f1445c6e08e9057539f98 (diff) | |
download | freeipa-6bd2f5ba350f7b21fc2da7acec862d342423b3d9.tar.gz freeipa-6bd2f5ba350f7b21fc2da7acec862d342423b3d9.tar.xz freeipa-6bd2f5ba350f7b21fc2da7acec862d342423b3d9.zip |
Fixed host managed-by adder dialog.
The host managed-by adder dialog has been fixed to use the new
--not-man-hosts option to filter out hosts that are already added.
Ticket #1675
-rw-r--r-- | install/ui/association.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install/ui/association.js b/install/ui/association.js index c72b6916b..72e1f0c0e 100644 --- a/install/ui/association.js +++ b/install/ui/association.js @@ -207,6 +207,8 @@ IPA.association_adder_dialog = function(spec) { other_attribute_member = 'memberof'; else if (that.attribute_member == 'memberof') other_attribute_member = 'member'; + else if (that.attribute_member == 'managedby') + other_attribute_member = 'managing'; var relationship = relationships[other_attribute_member]; if (relationship) { |