Libraries/OS.Darwin/OS.Darwin.psm1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<#
    .SYNOPSIS
    Get the family of the OS
#>

function Get-OSFamily {
    [CmdletBinding()][OutputType([String])]Param (
        [switch]$Online,
        [string]$Root = "/"
    )
    Begin {
        Write-EnterFunction
    }

    Process {
        return "macOS"
   }

    End {
        Write-LeaveFunction
    }
}