diff options
author | espro <brent.bloxam@gmail.com> | 2012-01-23 12:38:51 -0500 |
---|---|---|
committer | espro <brent.bloxam@gmail.com> | 2012-01-23 12:38:51 -0500 |
commit | 31e2d3523a99b9515605b5390b0d5a1bd5a9ec29 (patch) | |
tree | 10808b153947b6b1d284864ac4169db9642ddca5 | |
parent | 396760d9e851f0e13fed6d26537a57893959a8e6 (diff) | |
download | bcfg2-31e2d3523a99b9515605b5390b0d5a1bd5a9ec29.tar.gz bcfg2-31e2d3523a99b9515605b5390b0d5a1bd5a9ec29.tar.bz2 bcfg2-31e2d3523a99b9515605b5390b0d5a1bd5a9ec29.zip |
Fix arch for SL
-rw-r--r-- | doc/server/plugins/probes/group.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/server/plugins/probes/group.txt b/doc/server/plugins/probes/group.txt index 91a568116..5c4d6ecb1 100644 --- a/doc/server/plugins/probes/group.txt +++ b/doc/server/plugins/probes/group.txt @@ -88,7 +88,7 @@ Probe used to dynamically set client groups based on OS/distro. ARCH=`uname -m` case "$ARCH" in "x86_64") - if [ "$OS_GROUP" == 'centos' -o "$OS_GROUP" == 'redhat' ]; then + if [ "$OS_GROUP" == 'centos' -o "$OS_GROUP" == 'sl' -o "$OS_GROUP" == 'redhat' ]; then OUTPUT="$OUTPUT\ngroup:${ARCH}" else OUTPUT="$OUTPUT\ngroup:amd64" |