mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
Load distutils on all platforms EXCEPT Solaris.
Solaris doesn't ship distutils with with the default Python package. This patch fixes "service" on Solaris since 30d6713.
This commit is contained in:
parent
1728f9bba7
commit
b2e39265e1
1 changed files with 2 additions and 1 deletions
|
@ -106,7 +106,8 @@ import select
|
||||||
import time
|
import time
|
||||||
import string
|
import string
|
||||||
|
|
||||||
if platform.system() == 'Linux':
|
# The distutils module is not shipped with SUNWPython on Solaris.
|
||||||
|
if platform.system() != 'SunOS':
|
||||||
from distutils.version import LooseVersion
|
from distutils.version import LooseVersion
|
||||||
|
|
||||||
class Service(object):
|
class Service(object):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue