Skip to content

Commit

Permalink
Merge pull request #1053 from fanf/bug_2543/allow_to_make_a_group_wit…
Browse files Browse the repository at this point in the history
…h_only_32bits_or_64bits_nodes

Fixes #2543: Allow to make a group with only 32bits or 64bits nodes
  • Loading branch information
ncharles committed Feb 28, 2016
2 parents ffccd97 + af47915 commit 5cc1c13
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
*************************************************************************************
*
* This file is part of Rudder.
*
*
* Rudder is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
*
* In accordance with the terms of section 7 (7. Additional Terms.) of
* the GNU General Public License version 3, the copyright holders add
* the following Additional permissions:
Expand All @@ -22,12 +22,12 @@
* documentation that, without modification of the Source Code, enables
* supplementary functions or services in addition to those offered by
* the Software.
*
*
* Rudder is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*
* You should have received a copy of the GNU General Public License
* along with Rudder. If not, see <http://www.gnu.org/licenses/>.
Expand Down Expand Up @@ -163,6 +163,7 @@ class DitQueryData(dit:InventoryDit) {
Criterion(A_OS_VERSION, OrderedStringComparator),
Criterion(A_OS_SERVICE_PACK, OrderedStringComparator),
Criterion(A_OS_KERNEL_VERSION , OrderedStringComparator),
Criterion(A_ARCH, StringComparator),
Criterion(A_NODE_UUID, StringComparator),
Criterion(A_HOSTNAME, StringComparator),
Criterion(A_SERVER_ROLE, StringComparator),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
#####################################################################################
#
# This file is part of Rudder.
#
#
# Rudder is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
#
# In accordance with the terms of section 7 (7. Additional Terms.) of
# the GNU General Public License version 3, the copyright holders add
# the following Additional permissions:
Expand All @@ -21,12 +21,12 @@
# documentation that, without modification of the Source Code, enables
# supplementary functions or services in addition to those offered by
# the Software.
#
#
# Rudder is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with Rudder. If not, see <http://www.gnu.org/licenses/>.

Expand Down Expand Up @@ -111,6 +111,7 @@ ldap.attr.osFullName=Operating System Detailed Name
ldap.attr.osVersion=Operating System Version
ldap.attr.osKernelVersion=Kernel version
ldap.attr.osServicePack=Operating System Service Pack
ldap.attr.osArchitectureType=Operating System Architecture Description
ldap.attr.cn = Name
ldap.attr.description = Description
ldap.attr.componentSerialNumber = Serial Number
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,7 @@ $$("#${detailsId}").bind( "show", function(event, ui) {
<b>Operating System Name:</b> {S.?("os.name."+sm.node.main.osDetails.os.name)}<br/>
<b>Operating System Version:</b> {sm.node.main.osDetails.version.value}<br/>
<b>Operating System Service Pack:</b> {sm.node.main.osDetails.servicePack.getOrElse("None")}<br/>
<b>Operating System Architecture Description:</b> {sm.node.archDescription.getOrElse("None")}<br/>
</div>

<h4 class="tablemargin">Rudder information</h4>
Expand Down

0 comments on commit 5cc1c13

Please sign in to comment.