AD-LinuxInventory.psd1

@{
    RootModule        = 'AD-LinuxInventory.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'd2e8f3a1-5b49-4c7d-ae12-9f3c6d8b7e45'
    Author            = 'Larry Roberts'
    CompanyName       = 'Independent Consultant'
    Copyright         = '(c) 2026 Larry Roberts. All rights reserved.'
    Description       = 'Register Linux and non-Windows servers in Active Directory as computer objects. Makes Linux boxes visible in AD Users and Computers alongside Windows servers. Supports single registration, bulk CSV import, and automated ping-based health monitoring.'

    PowerShellVersion = '5.1'

    FunctionsToExport = @(
        'Register-LinuxServer',
        'Import-LinuxInventory',
        'Get-LinuxInventory',
        'Update-LinuxServer',
        'Sync-LinuxInventory'
    )

    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()

    PrivateData = @{
        PSData = @{
            Tags       = @('ActiveDirectory', 'Linux', 'Inventory', 'CrossPlatform', 'ServerManagement')
            LicenseUri = 'https://github.com/larro1991/AD-LinuxInventory/blob/master/LICENSE'
            ProjectUri = 'https://github.com/larro1991/AD-LinuxInventory'
        }
    }
}