Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
68959e7f
Commit
68959e7f
authored
May 29, 2013
by
Chris Gardner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use 'implementation' if 'brand' not available (Solaris 9). Add CPU socket/core counting.
parent
9ca7165f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
6 deletions
+26
-6
library/system/setup
+26
-6
No files found.
library/system/setup
View file @
68959e7f
...
@@ -655,6 +655,8 @@ class SunOSHardware(Hardware):
...
@@ -655,6 +655,8 @@ class SunOSHardware(Hardware):
return
self
.
facts
return
self
.
facts
def
get_cpu_facts
(
self
):
def
get_cpu_facts
(
self
):
physid
=
0
sockets
=
{}
rc
,
out
,
err
=
module
.
run_command
(
"/usr/bin/kstat cpu_info"
)
rc
,
out
,
err
=
module
.
run_command
(
"/usr/bin/kstat cpu_info"
)
self
.
facts
[
'processor'
]
=
[]
self
.
facts
[
'processor'
]
=
[]
for
line
in
out
.
split
(
'
\n
'
):
for
line
in
out
.
split
(
'
\n
'
):
...
@@ -662,15 +664,33 @@ class SunOSHardware(Hardware):
...
@@ -662,15 +664,33 @@ class SunOSHardware(Hardware):
continue
continue
data
=
line
.
split
(
None
,
1
)
data
=
line
.
split
(
None
,
1
)
key
=
data
[
0
]
.
strip
()
key
=
data
[
0
]
.
strip
()
# key "brand" works on Solaris 10
# "brand" works on Solaris 10 & 11. "implementation" for Solaris 9.
if
key
==
'brand'
:
if
key
==
'module'
:
brand
=
''
elif
key
==
'brand'
:
brand
=
data
[
1
]
.
strip
()
elif
key
==
'implementation'
:
processor
=
brand
or
data
[
1
]
.
strip
()
if
'processor'
not
in
self
.
facts
:
if
'processor'
not
in
self
.
facts
:
self
.
facts
[
'processor'
]
=
[]
self
.
facts
[
'processor'
]
=
[]
self
.
facts
[
'processor'
]
.
append
(
data
[
1
]
.
strip
())
self
.
facts
[
'processor'
]
.
append
(
processor
)
# Counting cores on Solaris can be complicated. Leave as-is for now.
elif
key
==
'chip_id'
:
physid
=
data
[
1
]
.
strip
()
if
physid
not
in
sockets
:
sockets
[
physid
]
=
1
else
:
sockets
[
physid
]
+=
1
# Counting cores on Solaris can be complicated.
# https://blogs.oracle.com/mandalika/entry/solaris_show_me_the_cpu
# https://blogs.oracle.com/mandalika/entry/solaris_show_me_the_cpu
self
.
facts
[
'processor_cores'
]
=
'NA'
# Treat 'processor_count' as physical sockets and 'processor_cores' as
self
.
facts
[
'processor_count'
]
=
len
(
self
.
facts
[
'processor'
])
# virtual CPUs visisble to Solaris. Not a true count of cores for modern SPARC as
# these processors have: sockets -> cores -> threads/virtual CPU.
if
len
(
sockets
)
>
0
:
self
.
facts
[
'processor_count'
]
=
len
(
sockets
)
self
.
facts
[
'processor_cores'
]
=
reduce
(
lambda
x
,
y
:
x
+
y
,
sockets
.
values
())
else
:
self
.
facts
[
'processor_cores'
]
=
'NA'
self
.
facts
[
'processor_count'
]
=
len
(
self
.
facts
[
'processor'
])
def
get_memory_facts
(
self
):
def
get_memory_facts
(
self
):
rc
,
out
,
err
=
module
.
run_command
([
"/usr/sbin/prtconf"
])
rc
,
out
,
err
=
module
.
run_command
([
"/usr/sbin/prtconf"
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment