def system_type()

in fclib/fclib/common/utils.py [0:0]


def system_type():
    """Return type of the current operating system"""

    if platform == "linux" or platform == "linux2":
        system_type = "linux"
    elif platform == "darwin":
        system_type = "mac"
    elif platform == "win32":
        system_type = "win"
    return system_type