de3c59a675
- Create and update CPU - Create and update Memory - Create and update RAID Cards (HP and Storcli) - Create and update Physical disks
6 lines
149 B
Python
6 lines
149 B
Python
from shutil import which
|
|
|
|
|
|
def is_tool(name):
|
|
'''Check whether `name` is on PATH and marked as executable.'''
|
|
return which(name) is not None
|