├── .github ├── DISCUSSION_TEMPLATE │ ├── announcements.yml │ ├── general.yml │ ├── ideas.yml │ └── q-a.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml └── workflows │ ├── glpi-agent-ci.yml │ └── glpi-agent-packaging.yml ├── .gitignore ├── CONTRIB.md ├── Changes ├── LICENSE ├── MANIFEST.SKIP ├── Makefile.PL ├── README.md ├── SECURITY.md ├── THANKS ├── bin ├── glpi-agent ├── glpi-esx ├── glpi-injector ├── glpi-inventory ├── glpi-netdiscovery ├── glpi-netinventory ├── glpi-remote ├── glpi-wakeonlan ├── glpi-win32-service └── glpi-win32-service.rc.sample ├── contrib ├── macosx │ ├── .gitignore │ ├── Resources │ │ ├── License.txt │ │ └── background.png │ ├── glpi-agent-packaging.sh │ ├── munkipkg.patch │ └── scripts │ │ ├── cacert.pem │ │ ├── dmidecode │ │ ├── postinstall │ │ ├── preinstall │ │ └── uninstaller.sh ├── netdisco │ └── netdisco_2_glpi.sh ├── unix │ ├── glpi-agent-appimage-hook │ ├── glpi-agent-linux-installer.pl │ ├── glpi-agent-portable.sh │ ├── glpi-agent-rpm-build.sh │ ├── glpi-agent.cron │ ├── glpi-agent.init.redhat │ ├── glpi-agent.service │ ├── glpi-agent.spec │ ├── install-deb-README.md │ ├── install-deb.sh │ ├── installer │ │ ├── Archive.pm │ │ ├── DebDistro.pm │ │ ├── Getopt.pm │ │ ├── InstallerVersion.pm │ │ ├── LinuxDistro.pm │ │ ├── RpmDistro.pm │ │ └── SnapInstall.pm │ ├── make-linux-appimage.sh │ └── make-linux-installer.sh └── windows │ ├── GLPI-Agent.adml │ ├── GLPI-Agent.admx │ ├── glpi-agent-built-perl-tests.pl │ ├── glpi-agent-deployment.vbs │ ├── glpi-agent-extlibs-build.pl │ ├── glpi-agent-packaging.pl │ └── packaging │ ├── 23179.patch │ ├── CustomActionDllBuildJob.pm │ ├── CustomCodeSigning.pm │ ├── GLPI-Agent_Banner.bmp │ ├── GLPI-Agent_Dialog.bmp │ ├── MSI_main-v2.wxs.tt │ ├── MSI_strings.wxl.tt │ ├── Makefile.patch │ ├── PerlBuildJob.pm │ ├── ToolchainBuildJob.pm │ ├── Variables-v2.wxi.tt │ ├── Version.pm.tt │ ├── agentexe.ico │ ├── agentexe.rc.tt │ ├── glpi-agent.ico │ ├── gpl-2.0.rtf │ ├── makedef.patch │ ├── perl-dist-strawberry.patch │ ├── setup.pm │ ├── template.bat.tt │ └── tools │ ├── ca │ ├── .gitignore │ ├── Makefile │ └── dll │ │ ├── ca.def │ │ ├── ca.dll.manifest.tt │ │ ├── ca.rc │ │ ├── customaction.cpp │ │ ├── customaction.h │ │ ├── dllmain.cpp │ │ └── log.cpp │ ├── x64 │ ├── 7z.dll │ └── 7z.exe │ └── x86 │ └── hdparm.exe ├── debian ├── NEWS ├── changelog ├── control ├── copyright ├── glpi-agent-task-esx.manpages ├── glpi-agent-task-network.manpages ├── glpi-agent-task-network.postinst ├── glpi-agent-task-network.postrm ├── glpi-agent.README.Debian ├── glpi-agent.dirs ├── glpi-agent.docs ├── glpi-agent.manpages ├── glpi-agent.postinst ├── glpi-agent.postrm ├── not-installed ├── patches │ ├── series │ └── simpler-setup-module.patch ├── refresh-install-files ├── rules ├── source │ └── format ├── tests │ └── pkg-perl │ │ ├── SKIP │ │ ├── smoke-env │ │ ├── smoke-files │ │ └── smoke-tests ├── upstream │ └── metadata └── watch ├── etc ├── agent.cfg ├── basic-authentication-server-plugin.cfg ├── inventory-server-plugin.cfg ├── proxy-server-plugin.cfg ├── proxy2-server-plugin.cfg ├── server-test-plugin.cfg ├── snmp-advanced-support.cfg ├── ssl-server-plugin.cfg └── toolbox-plugin.cfg ├── go.mod ├── go.sum ├── lib ├── GLPI │ ├── Agent.pm │ └── Agent │ │ ├── Config.pm │ │ ├── Daemon.pm │ │ ├── Daemon │ │ └── Win32.pm │ │ ├── Event.pm │ │ ├── HTTP │ │ ├── Client.pm │ │ ├── Client │ │ │ ├── Fusion.pm │ │ │ ├── GLPI.pm │ │ │ └── OCS.pm │ │ ├── Protocol │ │ │ └── https.pm │ │ ├── Server.pm │ │ ├── Server │ │ │ ├── BasicAuthentication.pm │ │ │ ├── Inventory.pm │ │ │ ├── Plugin.pm │ │ │ ├── Proxy.pm │ │ │ ├── SSL.pm │ │ │ ├── SecondaryProxy.pm │ │ │ ├── Test.pm │ │ │ ├── ToolBox.pm │ │ │ └── ToolBox │ │ │ │ ├── Credentials.pm │ │ │ │ ├── Inventory.pm │ │ │ │ ├── IpRange.pm │ │ │ │ ├── MibSupport.pm │ │ │ │ ├── Remotes.pm │ │ │ │ ├── Results.pm │ │ │ │ ├── Results │ │ │ │ ├── Archive.pm │ │ │ │ ├── Archive7z.pm │ │ │ │ ├── ArchiveTarBzip.pm │ │ │ │ ├── ArchiveTarGzip.pm │ │ │ │ ├── ArchiveTarXz.pm │ │ │ │ ├── ArchiveZip.pm │ │ │ │ ├── CustomFields.pm │ │ │ │ ├── Device.pm │ │ │ │ ├── Fields.pm │ │ │ │ ├── Inventory.pm │ │ │ │ ├── NetDiscovery.pm │ │ │ │ ├── NetInventory.pm │ │ │ │ └── OtherFields.pm │ │ │ │ └── Scheduling.pm │ │ └── Session.pm │ │ ├── Inventory.pm │ │ ├── Inventory │ │ └── DatabaseService.pm │ │ ├── Logger.pm │ │ ├── Logger │ │ ├── Backend.pm │ │ ├── File.pm │ │ ├── Stderr.pm │ │ └── Syslog.pm │ │ ├── Protocol │ │ ├── Answer.pm │ │ ├── Contact.pm │ │ ├── GetParams.pm │ │ ├── Inventory.pm │ │ └── Message.pm │ │ ├── SNMP.pm │ │ ├── SNMP │ │ ├── Device.pm │ │ ├── Device │ │ │ └── Components.pm │ │ ├── Live.pm │ │ ├── MibSupport.pm │ │ ├── MibSupport │ │ │ ├── Aerohive.pm │ │ │ ├── Aruba.pm │ │ │ ├── Avaya.pm │ │ │ ├── Bachmann.pm │ │ │ ├── Brocade.pm │ │ │ ├── BrotherNetConfig.pm │ │ │ ├── Canon.pm │ │ │ ├── CheckPoint.pm │ │ │ ├── Cisco.pm │ │ │ ├── CiscoPortSecurity.pm │ │ │ ├── CiscoUcsBoard.pm │ │ │ ├── CitrixNetscaler.pm │ │ │ ├── ConfigurationPlugin.pm │ │ │ ├── DefencePro.pm │ │ │ ├── Dell.pm │ │ │ ├── Digi.pm │ │ │ ├── EMC.pm │ │ │ ├── EatonEpdu.pm │ │ │ ├── Epson.pm │ │ │ ├── Force10S.pm │ │ │ ├── FreeBSD.pm │ │ │ ├── HPCitizen.pm │ │ │ ├── HPHttpManagement.pm │ │ │ ├── HPNetPeripheral.pm │ │ │ ├── Hikvision.pm │ │ │ ├── Hwg.pm │ │ │ ├── Idrac.pm │ │ │ ├── Infortrend.pm │ │ │ ├── Intelbras.pm │ │ │ ├── Konica.pm │ │ │ ├── Kyocera.pm │ │ │ ├── Lexmark.pm │ │ │ ├── LinuxAppliance.pm │ │ │ ├── Mikrotik.pm │ │ │ ├── Multitech.pm │ │ │ ├── Netgear.pm │ │ │ ├── Oki.pm │ │ │ ├── Panasas.pm │ │ │ ├── Pantum.pm │ │ │ ├── Qnap.pm │ │ │ ├── RNX.pm │ │ │ ├── Raritan.pm │ │ │ ├── Ricoh.pm │ │ │ ├── Ruckus.pm │ │ │ ├── Siemens.pm │ │ │ ├── Snom.pm │ │ │ ├── SonicWall.pm │ │ │ ├── Sophos.pm │ │ │ ├── Toshiba.pm │ │ │ ├── UPS.pm │ │ │ ├── Ubnt.pm │ │ │ ├── Voltaire.pm │ │ │ ├── WyseThinOS.pm │ │ │ ├── Xerox.pm │ │ │ ├── Zebra.pm │ │ │ ├── Zyxel.pm │ │ │ └── iLO.pm │ │ ├── MibSupportTemplate.pm │ │ └── Mock.pm │ │ ├── SOAP │ │ ├── VMware.pm │ │ ├── VMware │ │ │ └── Host.pm │ │ ├── WsMan.pm │ │ └── WsMan │ │ │ ├── Action.pm │ │ │ ├── Address.pm │ │ │ ├── Arguments.pm │ │ │ ├── Attribute.pm │ │ │ ├── Body.pm │ │ │ ├── Code.pm │ │ │ ├── Command.pm │ │ │ ├── CommandId.pm │ │ │ ├── CommandLine.pm │ │ │ ├── CommandResponse.pm │ │ │ ├── CommandState.pm │ │ │ ├── DataLocale.pm │ │ │ ├── Datetime.pm │ │ │ ├── DesiredStream.pm │ │ │ ├── EndOfSequence.pm │ │ │ ├── Enumerate.pm │ │ │ ├── EnumerateResponse.pm │ │ │ ├── EnumerationContext.pm │ │ │ ├── Envelope.pm │ │ │ ├── ExitCode.pm │ │ │ ├── Fault.pm │ │ │ ├── Filter.pm │ │ │ ├── Header.pm │ │ │ ├── Identify.pm │ │ │ ├── IdentifyResponse.pm │ │ │ ├── InputStreams.pm │ │ │ ├── Items.pm │ │ │ ├── Locale.pm │ │ │ ├── MaxElements.pm │ │ │ ├── MaxEnvelopeSize.pm │ │ │ ├── MessageID.pm │ │ │ ├── Namespace.pm │ │ │ ├── Node.pm │ │ │ ├── OperationID.pm │ │ │ ├── OperationTimeout.pm │ │ │ ├── OptimizeEnumeration.pm │ │ │ ├── Option.pm │ │ │ ├── OptionSet.pm │ │ │ ├── OutputStreams.pm │ │ │ ├── PartComponent.pm │ │ │ ├── Pull.pm │ │ │ ├── PullResponse.pm │ │ │ ├── Reason.pm │ │ │ ├── Receive.pm │ │ │ ├── ReceiveResponse.pm │ │ │ ├── ReferenceParameters.pm │ │ │ ├── RelatesTo.pm │ │ │ ├── ReplyTo.pm │ │ │ ├── ResourceCreated.pm │ │ │ ├── ResourceURI.pm │ │ │ ├── Selector.pm │ │ │ ├── SelectorSet.pm │ │ │ ├── SequenceId.pm │ │ │ ├── SessionId.pm │ │ │ ├── Shell.pm │ │ │ ├── Signal.pm │ │ │ ├── Stream.pm │ │ │ ├── Text.pm │ │ │ ├── To.pm │ │ │ └── Value.pm │ │ ├── Storage.pm │ │ ├── Target.pm │ │ ├── Target │ │ ├── Listener.pm │ │ ├── Local.pm │ │ └── Server.pm │ │ ├── Task.pm │ │ ├── Task │ │ ├── Collect.pm │ │ ├── Collect │ │ │ └── Version.pm │ │ ├── Deploy.pm │ │ ├── Deploy │ │ │ ├── ActionProcessor.pm │ │ │ ├── ActionProcessor │ │ │ │ ├── Action.pm │ │ │ │ └── Action │ │ │ │ │ ├── Cmd.pm │ │ │ │ │ ├── Copy.pm │ │ │ │ │ ├── Delete.pm │ │ │ │ │ ├── Mkdir.pm │ │ │ │ │ └── Move.pm │ │ │ ├── CheckProcessor.pm │ │ │ ├── CheckProcessor │ │ │ │ ├── DirectoryExists.pm │ │ │ │ ├── DirectoryMissing.pm │ │ │ │ ├── FileExists.pm │ │ │ │ ├── FileMissing.pm │ │ │ │ ├── FileSHA512.pm │ │ │ │ ├── FileSHA512Mismatch.pm │ │ │ │ ├── FileSizeEquals.pm │ │ │ │ ├── FileSizeGreater.pm │ │ │ │ ├── FileSizeLower.pm │ │ │ │ ├── FreeSpaceGreater.pm │ │ │ │ ├── WinKeyEquals.pm │ │ │ │ ├── WinKeyExists.pm │ │ │ │ ├── WinKeyMissing.pm │ │ │ │ ├── WinKeyNotEquals.pm │ │ │ │ ├── WinValueExists.pm │ │ │ │ ├── WinValueMissing.pm │ │ │ │ └── WinValueType.pm │ │ │ ├── Datastore.pm │ │ │ ├── Datastore │ │ │ │ └── WorkDir.pm │ │ │ ├── DiskFree.pm │ │ │ ├── File.pm │ │ │ ├── Job.pm │ │ │ ├── Maintenance.pm │ │ │ ├── P2P.pm │ │ │ ├── UserCheck.pm │ │ │ ├── UserCheck │ │ │ │ └── WTS.pm │ │ │ └── Version.pm │ │ ├── ESX.pm │ │ ├── ESX │ │ │ └── Version.pm │ │ ├── Inventory.pm │ │ ├── Inventory │ │ │ ├── AIX.pm │ │ │ ├── AIX │ │ │ │ ├── Bios.pm │ │ │ │ ├── CPU.pm │ │ │ │ ├── Controllers.pm │ │ │ │ ├── Drives.pm │ │ │ │ ├── Hardware.pm │ │ │ │ ├── LVM.pm │ │ │ │ ├── Memory.pm │ │ │ │ ├── Modems.pm │ │ │ │ ├── Networks.pm │ │ │ │ ├── OS.pm │ │ │ │ ├── Slots.pm │ │ │ │ ├── Softwares.pm │ │ │ │ ├── Sounds.pm │ │ │ │ ├── Storages.pm │ │ │ │ └── Videos.pm │ │ │ ├── AccessLog.pm │ │ │ ├── BSD.pm │ │ │ ├── BSD │ │ │ │ ├── Alpha.pm │ │ │ │ ├── CPU.pm │ │ │ │ ├── Drives.pm │ │ │ │ ├── MIPS.pm │ │ │ │ ├── Memory.pm │ │ │ │ ├── Networks.pm │ │ │ │ ├── OS.pm │ │ │ │ ├── SPARC.pm │ │ │ │ ├── Softwares.pm │ │ │ │ ├── Storages.pm │ │ │ │ ├── Storages │ │ │ │ │ └── Megaraid.pm │ │ │ │ ├── Uptime.pm │ │ │ │ └── i386.pm │ │ │ ├── Generic.pm │ │ │ ├── Generic │ │ │ │ ├── Arch.pm │ │ │ │ ├── Batteries.pm │ │ │ │ ├── Batteries │ │ │ │ │ ├── Acpiconf.pm │ │ │ │ │ ├── SysClass.pm │ │ │ │ │ └── Upower.pm │ │ │ │ ├── Databases.pm │ │ │ │ ├── Databases │ │ │ │ │ ├── DB2.pm │ │ │ │ │ ├── MSSQL.pm │ │ │ │ │ ├── MongoDB.pm │ │ │ │ │ ├── MySQL.pm │ │ │ │ │ ├── Oracle.pm │ │ │ │ │ └── PostgreSQL.pm │ │ │ │ ├── Dmidecode.pm │ │ │ │ ├── Dmidecode │ │ │ │ │ ├── Battery.pm │ │ │ │ │ ├── Bios.pm │ │ │ │ │ ├── Hardware.pm │ │ │ │ │ ├── Memory.pm │ │ │ │ │ ├── Ports.pm │ │ │ │ │ ├── Psu.pm │ │ │ │ │ └── Slots.pm │ │ │ │ ├── Domains.pm │ │ │ │ ├── Drives.pm │ │ │ │ ├── Drives │ │ │ │ │ └── ASM.pm │ │ │ │ ├── Environment.pm │ │ │ │ ├── Firewall.pm │ │ │ │ ├── Firewall │ │ │ │ │ ├── Systemd.pm │ │ │ │ │ └── Ufw.pm │ │ │ │ ├── Hostname.pm │ │ │ │ ├── Ipmi.pm │ │ │ │ ├── Ipmi │ │ │ │ │ ├── Fru.pm │ │ │ │ │ ├── Fru │ │ │ │ │ │ ├── Controllers.pm │ │ │ │ │ │ ├── Memory.pm │ │ │ │ │ │ └── Psu.pm │ │ │ │ │ └── Lan.pm │ │ │ │ ├── Networks.pm │ │ │ │ ├── Networks │ │ │ │ │ └── iLO.pm │ │ │ │ ├── OS.pm │ │ │ │ ├── PCI.pm │ │ │ │ ├── PCI │ │ │ │ │ ├── Controllers.pm │ │ │ │ │ ├── Modems.pm │ │ │ │ │ ├── Sounds.pm │ │ │ │ │ ├── Videos.pm │ │ │ │ │ └── Videos │ │ │ │ │ │ └── Nvidia.pm │ │ │ │ ├── Printers.pm │ │ │ │ ├── Processes.pm │ │ │ │ ├── Remote_Mgmt.pm │ │ │ │ ├── Remote_Mgmt │ │ │ │ │ ├── AnyDesk.pm │ │ │ │ │ ├── LiteManager.pm │ │ │ │ │ ├── MeshCentral.pm │ │ │ │ │ ├── RMS.pm │ │ │ │ │ ├── RustDesk.pm │ │ │ │ │ ├── SupRemo.pm │ │ │ │ │ ├── TacticalRMM.pm │ │ │ │ │ └── TeamViewer.pm │ │ │ │ ├── Rudder.pm │ │ │ │ ├── SSH.pm │ │ │ │ ├── Screen.pm │ │ │ │ ├── Softwares.pm │ │ │ │ ├── Softwares │ │ │ │ │ ├── Deb.pm │ │ │ │ │ ├── Flatpak.pm │ │ │ │ │ ├── Gentoo.pm │ │ │ │ │ ├── Nix.pm │ │ │ │ │ ├── Pacman.pm │ │ │ │ │ ├── RPM.pm │ │ │ │ │ ├── Slackware.pm │ │ │ │ │ └── Snap.pm │ │ │ │ ├── Storages.pm │ │ │ │ ├── Storages │ │ │ │ │ ├── 3ware.pm │ │ │ │ │ ├── HP.pm │ │ │ │ │ └── HpWithSmartctl.pm │ │ │ │ ├── Timezone.pm │ │ │ │ ├── USB.pm │ │ │ │ └── Users.pm │ │ │ ├── HPUX.pm │ │ │ ├── HPUX │ │ │ │ ├── Bios.pm │ │ │ │ ├── CPU.pm │ │ │ │ ├── Controllers.pm │ │ │ │ ├── Drives.pm │ │ │ │ ├── Hardware.pm │ │ │ │ ├── MP.pm │ │ │ │ ├── Memory.pm │ │ │ │ ├── Networks.pm │ │ │ │ ├── OS.pm │ │ │ │ ├── Slots.pm │ │ │ │ ├── Softwares.pm │ │ │ │ ├── Storages.pm │ │ │ │ └── Uptime.pm │ │ │ ├── Linux.pm │ │ │ ├── Linux │ │ │ │ ├── ARM.pm │ │ │ │ ├── ARM │ │ │ │ │ ├── Board.pm │ │ │ │ │ └── CPU.pm │ │ │ │ ├── Alpha.pm │ │ │ │ ├── Alpha │ │ │ │ │ └── CPU.pm │ │ │ │ ├── AntiVirus.pm │ │ │ │ ├── AntiVirus │ │ │ │ │ ├── Bitdefender.pm │ │ │ │ │ ├── Cortex.pm │ │ │ │ │ ├── CrowdStrike.pm │ │ │ │ │ ├── Defender.pm │ │ │ │ │ └── Sentinelone.pm │ │ │ │ ├── Bios.pm │ │ │ │ ├── Distro.pm │ │ │ │ ├── Distro │ │ │ │ │ ├── NonLSB.pm │ │ │ │ │ └── OSRelease.pm │ │ │ │ ├── Drives.pm │ │ │ │ ├── Hardware.pm │ │ │ │ ├── Inputs.pm │ │ │ │ ├── LVM.pm │ │ │ │ ├── MIPS.pm │ │ │ │ ├── MIPS │ │ │ │ │ └── CPU.pm │ │ │ │ ├── Memory.pm │ │ │ │ ├── Networks.pm │ │ │ │ ├── Networks │ │ │ │ │ ├── DockerMacvlan.pm │ │ │ │ │ └── FibreChannel.pm │ │ │ │ ├── OS.pm │ │ │ │ ├── PowerPC.pm │ │ │ │ ├── PowerPC │ │ │ │ │ ├── Bios.pm │ │ │ │ │ └── CPU.pm │ │ │ │ ├── SPARC.pm │ │ │ │ ├── SPARC │ │ │ │ │ └── CPU.pm │ │ │ │ ├── Storages.pm │ │ │ │ ├── Storages │ │ │ │ │ ├── Adaptec.pm │ │ │ │ │ ├── Lsilogic.pm │ │ │ │ │ ├── Megacli.pm │ │ │ │ │ ├── MegacliWithSmartctl.pm │ │ │ │ │ ├── Megaraid.pm │ │ │ │ │ └── ServeRaid.pm │ │ │ │ ├── Uptime.pm │ │ │ │ ├── Videos.pm │ │ │ │ ├── i386.pm │ │ │ │ ├── i386 │ │ │ │ │ └── CPU.pm │ │ │ │ ├── m68k.pm │ │ │ │ └── m68k │ │ │ │ │ └── CPU.pm │ │ │ ├── MacOS.pm │ │ │ ├── MacOS │ │ │ │ ├── AntiVirus.pm │ │ │ │ ├── AntiVirus │ │ │ │ │ ├── Cortex.pm │ │ │ │ │ ├── CrowdStrike.pm │ │ │ │ │ ├── Defender.pm │ │ │ │ │ └── SentinelOne.pm │ │ │ │ ├── Batteries.pm │ │ │ │ ├── Bios.pm │ │ │ │ ├── CPU.pm │ │ │ │ ├── Drives.pm │ │ │ │ ├── Firewall.pm │ │ │ │ ├── Hardware.pm │ │ │ │ ├── Hostname.pm │ │ │ │ ├── License.pm │ │ │ │ ├── Memory.pm │ │ │ │ ├── Networks.pm │ │ │ │ ├── OS.pm │ │ │ │ ├── Printers.pm │ │ │ │ ├── Psu.pm │ │ │ │ ├── Softwares.pm │ │ │ │ ├── Sound.pm │ │ │ │ ├── Storages.pm │ │ │ │ ├── USB.pm │ │ │ │ ├── Uptime.pm │ │ │ │ └── Videos.pm │ │ │ ├── Module.pm │ │ │ ├── Provider.pm │ │ │ ├── Solaris.pm │ │ │ ├── Solaris │ │ │ │ ├── Bios.pm │ │ │ │ ├── CPU.pm │ │ │ │ ├── Controllers.pm │ │ │ │ ├── Drives.pm │ │ │ │ ├── Hardware.pm │ │ │ │ ├── Memory.pm │ │ │ │ ├── Networks.pm │ │ │ │ ├── OS.pm │ │ │ │ ├── Slots.pm │ │ │ │ ├── Softwares.pm │ │ │ │ └── Storages.pm │ │ │ ├── Version.pm │ │ │ ├── Virtualization.pm │ │ │ ├── Virtualization │ │ │ │ ├── Docker.pm │ │ │ │ ├── Hpvm.pm │ │ │ │ ├── HyperV.pm │ │ │ │ ├── Jails.pm │ │ │ │ ├── Libvirt.pm │ │ │ │ ├── Lxc.pm │ │ │ │ ├── Lxd.pm │ │ │ │ ├── Parallels.pm │ │ │ │ ├── Qemu.pm │ │ │ │ ├── SolarisZones.pm │ │ │ │ ├── SystemdNspawn.pm │ │ │ │ ├── VirtualBox.pm │ │ │ │ ├── Virtuozzo.pm │ │ │ │ ├── VmWareDesktop.pm │ │ │ │ ├── VmWareESX.pm │ │ │ │ ├── Vserver.pm │ │ │ │ ├── Wsl.pm │ │ │ │ ├── Xen.pm │ │ │ │ └── XenCitrixServer.pm │ │ │ ├── Vmsystem.pm │ │ │ ├── Win32.pm │ │ │ └── Win32 │ │ │ │ ├── AntiVirus.pm │ │ │ │ ├── Batteries.pm │ │ │ │ ├── Bios.pm │ │ │ │ ├── CPU.pm │ │ │ │ ├── Chassis.pm │ │ │ │ ├── Controllers.pm │ │ │ │ ├── Drives.pm │ │ │ │ ├── Environment.pm │ │ │ │ ├── Firewall.pm │ │ │ │ ├── Hardware.pm │ │ │ │ ├── Inputs.pm │ │ │ │ ├── License.pm │ │ │ │ ├── Memory.pm │ │ │ │ ├── Modems.pm │ │ │ │ ├── Networks.pm │ │ │ │ ├── OS.pm │ │ │ │ ├── Ports.pm │ │ │ │ ├── Printers.pm │ │ │ │ ├── Registry.pm │ │ │ │ ├── Slots.pm │ │ │ │ ├── Softwares.pm │ │ │ │ ├── Sounds.pm │ │ │ │ ├── Storages.pm │ │ │ │ ├── Storages │ │ │ │ └── HP.pm │ │ │ │ ├── USB.pm │ │ │ │ ├── Users.pm │ │ │ │ └── Videos.pm │ │ ├── NetDiscovery.pm │ │ ├── NetDiscovery │ │ │ ├── Job.pm │ │ │ └── Version.pm │ │ ├── NetInventory.pm │ │ ├── NetInventory │ │ │ ├── Job.pm │ │ │ └── Version.pm │ │ ├── RemoteInventory.pm │ │ ├── RemoteInventory │ │ │ ├── Remote.pm │ │ │ ├── Remote │ │ │ │ ├── Ssh.pm │ │ │ │ └── Winrm.pm │ │ │ ├── Remotes.pm │ │ │ └── Version.pm │ │ ├── WakeOnLan.pm │ │ └── WakeOnLan │ │ │ └── Version.pm │ │ ├── Tools.pm │ │ ├── Tools │ │ ├── AIX.pm │ │ ├── Archive.pm │ │ ├── BSD.pm │ │ ├── Batteries.pm │ │ ├── Constants.pm │ │ ├── Expiration.pm │ │ ├── Generic.pm │ │ ├── HPUX.pm │ │ ├── Hardware.pm │ │ ├── Hardware │ │ │ ├── Brocade.pm │ │ │ └── Qlogic.pm │ │ ├── Hostname.pm │ │ ├── IpmiFru.pm │ │ ├── License.pm │ │ ├── Linux.pm │ │ ├── MacOS.pm │ │ ├── Network.pm │ │ ├── PartNumber.pm │ │ ├── PartNumber │ │ │ ├── Dell.pm │ │ │ ├── Elpida.pm │ │ │ ├── Hynix.pm │ │ │ ├── KingMax.pm │ │ │ ├── Micron.pm │ │ │ ├── Positivo.pm │ │ │ └── Samsung.pm │ │ ├── PowerSupplies.pm │ │ ├── SNMP.pm │ │ ├── Screen.pm │ │ ├── Screen │ │ │ ├── Acer.pm │ │ │ ├── BenQ.pm │ │ │ ├── Eizo.pm │ │ │ ├── Goldstar.pm │ │ │ ├── Neovo.pm │ │ │ ├── Philips.pm │ │ │ └── Samsung.pm │ │ ├── Solaris.pm │ │ ├── Standards │ │ │ └── MobileCountryCode.pm │ │ ├── Storages │ │ │ └── HP.pm │ │ ├── USB.pm │ │ ├── USB │ │ │ └── Gertec.pm │ │ ├── UUID.pm │ │ ├── Unix.pm │ │ ├── Virtualization.pm │ │ ├── Win32.pm │ │ └── Win32 │ │ │ ├── Constants.pm │ │ │ ├── NetAdapter.pm │ │ │ ├── TimeZone.pm │ │ │ ├── Users.pm │ │ │ └── WTS.pm │ │ ├── Version.pm │ │ ├── XML.pm │ │ └── XML │ │ ├── Query.pm │ │ ├── Query │ │ ├── Inventory.pm │ │ └── Prolog.pm │ │ └── Response.pm └── setup.pm ├── resources ├── aix │ ├── README │ ├── lparstat │ │ ├── README │ │ ├── sample1 │ │ ├── sample2 │ │ ├── sample3 │ │ ├── sample4 │ │ ├── sample5 │ │ └── sample6 │ ├── lsattr │ │ ├── aix-4.3.1-en0 │ │ ├── aix-4.3.1-hdisk0 │ │ ├── aix-4.3.1-hdisk1 │ │ ├── aix-4.3.1-lo0 │ │ ├── aix-4.3.1-mem0 │ │ ├── aix-4.3.2-en0 │ │ ├── aix-4.3.2-en1 │ │ ├── aix-4.3.2-hdisk0 │ │ ├── aix-4.3.2-hdisk1 │ │ ├── aix-4.3.2-lo0 │ │ ├── aix-4.3.2-mem0 │ │ ├── aix-5.3a-en0 │ │ ├── aix-5.3a-hdisk0 │ │ ├── aix-5.3a-hdisk1 │ │ ├── aix-5.3a-lo0 │ │ ├── aix-5.3a-mem0 │ │ ├── aix-5.3a-proc0 │ │ ├── aix-5.3b-en0 │ │ ├── aix-5.3b-en1 │ │ ├── aix-5.3b-en2 │ │ ├── aix-5.3b-en3 │ │ ├── aix-5.3b-en4 │ │ ├── aix-5.3b-hdisk0 │ │ ├── aix-5.3b-hdisk1 │ │ ├── aix-5.3b-l0 │ │ ├── aix-5.3b-mem0 │ │ ├── aix-5.3b-proc0 │ │ ├── aix-5.3b-proc1 │ │ ├── aix-5.3c-en0 │ │ ├── aix-5.3c-en1 │ │ ├── aix-5.3c-en2 │ │ ├── aix-5.3c-mem0 │ │ ├── aix-5.3c-proc0 │ │ ├── aix-5.3c-proc2 │ │ ├── aix-5.3c-proc4 │ │ ├── aix-5.3c-proc6 │ │ ├── aix-6.1a-mem0 │ │ ├── aix-6.1a-proc0 │ │ ├── aix-6.1a-proc4 │ │ ├── aix-6.1b-en0 │ │ ├── aix-6.1b-en1 │ │ ├── aix-6.1b-en2 │ │ ├── aix-6.1b-en3 │ │ ├── aix-6.1b-hdisk0 │ │ ├── aix-6.1b-hdisk1 │ │ ├── aix-6.1b-mem0 │ │ ├── aix-6.1b-proc0 │ │ └── aix-6.1b-proc2 │ ├── lscfg │ │ ├── aix-4.3.1-en │ │ ├── aix-4.3.1-sysplanar0 │ │ ├── aix-4.3.2-en │ │ ├── aix-4.3.2-sysplanar0 │ │ ├── aix-5.3a-en │ │ ├── aix-5.3a-hdisk0 │ │ ├── aix-5.3a-hdisk1 │ │ ├── aix-5.3a-sysplanar0 │ │ ├── aix-5.3b-en │ │ ├── aix-5.3b-hdisk0 │ │ ├── aix-5.3b-hdisk1 │ │ ├── aix-5.3b-sysplanar0 │ │ ├── aix-5.3c-en │ │ ├── aix-5.3c-hdisk0 │ │ ├── aix-5.3c-hdisk1 │ │ ├── aix-5.3c-sysplanar0 │ │ ├── aix-6.1a-en │ │ ├── aix-6.1a-hdisk3 │ │ ├── aix-6.1a-sysplanar0 │ │ ├── aix-6.1b-en │ │ ├── aix-6.1b-hdisk0 │ │ ├── aix-6.1b-hdisk1 │ │ └── aix-6.1b-sysplanar0 │ ├── lsconf │ │ ├── ibm-7040-681 │ │ └── ibm-9080-m9s │ ├── lsdev │ │ ├── aix-4.3.1-adapter │ │ ├── aix-4.3.1-bus │ │ ├── aix-4.3.1-cdrom │ │ ├── aix-4.3.1-disk-scsi │ │ ├── aix-4.3.1-diskette │ │ ├── aix-4.3.1-memory │ │ ├── aix-4.3.1-processor │ │ ├── aix-4.3.1-tape │ │ ├── aix-4.3.2-adapter │ │ ├── aix-4.3.2-bus │ │ ├── aix-4.3.2-cdrom │ │ ├── aix-4.3.2-disk-scsi │ │ ├── aix-4.3.2-diskette │ │ ├── aix-4.3.2-memory │ │ ├── aix-4.3.2-processor │ │ ├── aix-4.3.2-tape │ │ ├── aix-5.3a-adapter │ │ ├── aix-5.3a-bus │ │ ├── aix-5.3a-disk-scsi │ │ ├── aix-5.3a-memory │ │ ├── aix-5.3a-processor │ │ ├── aix-5.3a-tape │ │ ├── aix-5.3b-adapter │ │ ├── aix-5.3b-bus │ │ ├── aix-5.3b-disk-scsi │ │ ├── aix-5.3b-diskette │ │ ├── aix-5.3b-memory │ │ ├── aix-5.3b-processor │ │ ├── aix-5.3c-adapter │ │ ├── aix-5.3c-bus │ │ ├── aix-5.3c-disk-vscsi │ │ ├── aix-5.3c-memory │ │ ├── aix-5.3c-processor │ │ ├── aix-6.1a-adapter │ │ ├── aix-6.1a-bus │ │ ├── aix-6.1a-disk-fcp │ │ ├── aix-6.1a-disk-vscsi │ │ ├── aix-6.1a-memory │ │ ├── aix-6.1a-processor │ │ ├── aix-6.1b-adapter │ │ ├── aix-6.1b-bus │ │ ├── aix-6.1b-disk-sas │ │ ├── aix-6.1b-mem │ │ ├── aix-6.1b-memory │ │ ├── aix-6.1b-pdisk │ │ └── aix-6.1b-processor │ ├── lsfs │ │ ├── aix-4.3.1 │ │ ├── aix-5.3 │ │ └── aix-6.1 │ ├── lslpp │ │ ├── aix-4.3.1 │ │ ├── aix-4.3.2 │ │ ├── aix-5.3a │ │ ├── aix-5.3b │ │ ├── aix-5.3c │ │ ├── aix-6.1a │ │ └── aix-6.1b │ ├── lslv │ │ ├── aix-6.1-dooncelv │ │ ├── aix-6.1-fslv00 │ │ ├── aix-6.1-fslv01 │ │ ├── aix-6.1-hd1 │ │ ├── aix-6.1-hd10opt │ │ ├── aix-6.1-hd11admin │ │ ├── aix-6.1-hd2 │ │ ├── aix-6.1-hd3 │ │ ├── aix-6.1-hd4 │ │ ├── aix-6.1-hd5 │ │ ├── aix-6.1-hd6 │ │ ├── aix-6.1-hd8 │ │ ├── aix-6.1-hd9var │ │ ├── aix-6.1-lg_dumplv │ │ ├── aix-6.1-livedump │ │ ├── aix-6.1-lv_auditlog │ │ └── aix-6.1-lv_tpc │ ├── lsps │ │ ├── aix-4.3.1 │ │ ├── aix-4.3.2 │ │ ├── aix-5.3a │ │ ├── aix-5.3b │ │ ├── aix-5.3c │ │ ├── aix-6.1a │ │ └── aix-6.1b │ ├── lspv │ │ ├── aix-6.1-hdisk0 │ │ ├── aix-6.1-hdisk1 │ │ ├── aix-6.1-hdisk2 │ │ └── aix-6.1-hdisk3 │ ├── lsvg │ │ ├── aix-6.1-l_altinst_rootvg │ │ ├── aix-6.1-l_rootvg │ │ ├── aix-6.1-l_vg_apps01 │ │ ├── aix-6.x-l_rootvg │ │ └── aix-6.x-rootvg │ └── lsvpd │ │ ├── aix-5.3a │ │ ├── aix-5.3b │ │ ├── aix-5.3c │ │ ├── aix-6.1a │ │ └── aix-6.1b ├── archive │ ├── config.tar │ ├── config.tar.bz2 │ ├── config.tar.gz │ ├── config.tar.xz │ └── config.zip ├── bsd │ ├── lsvfs │ │ └── freebsd-8.1 │ ├── mount │ │ └── dragonfly-1 │ ├── pkg_info │ │ ├── sample1 │ │ └── sample2 │ └── storages │ │ ├── dmesg │ │ ├── kern.geom.confxml │ │ └── mfiutil ├── config │ ├── conf.d │ │ ├── 00-include0.cfg │ │ ├── 10-include2.cfg │ │ ├── empty-logfile │ │ ├── looping-cfg.txt │ │ ├── no-include.txt │ │ └── timeout │ ├── daemon1 │ ├── include1 │ ├── include2 │ ├── include3 │ ├── include4 │ ├── include5 │ ├── include6 │ ├── include7 │ ├── include8 │ ├── loop.d │ │ └── loop.cfg │ ├── sample1 │ ├── sample2 │ ├── sample3 │ └── sample4 ├── containers │ └── docker │ │ ├── docker_inspect.json │ │ └── docker_ps-a-with-template.sample ├── esx │ ├── esx-4.1.0-1-hostfullinfo.dump.gz │ ├── esx-4.1.0-1.json │ └── esx-4.1.0-1 │ │ ├── Login.soap │ │ ├── RetrieveProperties-VM-16.soap │ │ ├── RetrieveProperties-VM-32.soap │ │ ├── RetrieveProperties-VM-48.soap │ │ ├── RetrieveProperties-VM-64.soap │ │ ├── RetrieveProperties-VM-80.soap │ │ ├── RetrieveProperties.soap │ │ ├── RetrievePropertiesVMList.soap │ │ └── ServiceInstance.soap ├── generic │ ├── README │ ├── arp │ │ ├── linux │ │ ├── linux-ip-neighbor │ │ ├── none │ │ └── win32 │ ├── asmcmd │ │ ├── grid-1 │ │ └── oracle-1 │ ├── batteries │ │ ├── acpiconf │ │ │ ├── dmidecode_1.txt │ │ │ └── infos_1.txt │ │ └── upower │ │ │ ├── dmidecode_1.txt │ │ │ ├── dmidecode_2.txt │ │ │ ├── dmidecode_4.txt │ │ │ ├── enumerate_1.txt │ │ │ ├── enumerate_2.txt │ │ │ ├── enumerate_4.txt │ │ │ ├── infos_1.txt │ │ │ ├── infos_2.txt │ │ │ ├── infos_3.txt │ │ │ ├── infos_4.1.txt │ │ │ └── infos_4.2.txt │ ├── databases │ │ ├── db2-connect-failure-db2ilist │ │ ├── db2-connect-failure-db2ls-c │ │ ├── db2-connect-failure-get-snapshot-for-dbm │ │ ├── db2-connect-failure-list-db-directory │ │ ├── db2-linux-11.5.6.0-call-get_dbsize_info-1- │ │ ├── db2-linux-11.5.6.0-db2ilist │ │ ├── db2-linux-11.5.6.0-db2ls-c │ │ ├── db2-linux-11.5.6.0-get-instance │ │ ├── db2-linux-11.5.6.0-get-snapshot-for-dbm │ │ ├── db2-linux-11.5.6.0-list-db-directory │ │ ├── db2-linux-11.5.6.0-select-varchar_format-max-alter_time-yyyy-mm-dd-hh24miss-from-syscattables │ │ ├── db2-linux-11.5.6.0-select-varchar_format-min-create_time-yyyy-mm-dd-hh24miss-from-syscattables │ │ ├── mariadb-10.4.19-select-date_subnow-interval-variable_value-second-from-information_schemaglobal_status-where-variable_nameuptime │ │ ├── mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-asteriskcdrdb │ │ ├── mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-beacon │ │ ├── mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-glpi │ │ ├── mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-information_schema │ │ ├── mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-mysql │ │ ├── mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-performance_schema │ │ ├── mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-test │ │ ├── mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-asteriskcdrdb │ │ ├── mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-beacon │ │ ├── mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-glpi │ │ ├── mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-information_schema │ │ ├── mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-mysql │ │ ├── mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-performance_schema │ │ ├── mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-test │ │ ├── mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-asteriskcdrdb │ │ ├── mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-beacon │ │ ├── mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-glpi │ │ ├── mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-information_schema │ │ ├── mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-mysql │ │ ├── mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-performance_schema │ │ ├── mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-test │ │ ├── mariadb-10.4.19-show-databases │ │ ├── mariadb-10.4.19-show-variables-like-version │ │ ├── mongodb-3.6.3-db-admincommand-listdatabases-1-databases │ │ ├── mongodb-3.6.3-db-getsiblingdbadmin-runcommandping-1-ok │ │ ├── mongodb-3.6.3-db-getsiblingdbconfig-runcommandping-1-ok │ │ ├── mongodb-3.6.3-db-getsiblingdblocal-runcommandping-1-ok │ │ ├── mongodb-3.6.3-db-version │ │ ├── mongodb-3.6.3-isodate-gettime-db-serverstatus-uptimemillis │ │ ├── mongodb-5.0.1-db-admincommand-listdatabases-1-databases │ │ ├── mongodb-5.0.1-db-getsiblingdbadmin-runcommandping-1-ok │ │ ├── mongodb-5.0.1-db-getsiblingdbconfig-runcommandping-1-ok │ │ ├── mongodb-5.0.1-db-getsiblingdblocal-runcommandping-1-ok │ │ ├── mongodb-5.0.1-db-version │ │ ├── mongodb-5.0.1-isodate-gettime-db-serverstatus-uptimemillis │ │ ├── ora1910-ora195-aix-oraInst.loc │ │ ├── ora1910-ora195-aix │ │ │ └── ContentsXML │ │ │ │ └── inventory.xml │ │ ├── ora195-oraInst.loc │ │ ├── ora195 │ │ │ └── ContentsXML │ │ │ │ └── inventory.xml │ │ ├── oracle-19c-ORCLCDB-connect-failure-show-release │ │ ├── oracle-19c-ORCLCDB-select-bytes-from-dba_data_files │ │ ├── oracle-19c-ORCLCDB-select-instance_name-from-instances │ │ ├── oracle-19c-ORCLCDB-select-name-from-database │ │ ├── oracle-19c-ORCLCDB-select-timestamp-from-dba_tab_modifications │ │ ├── oracle-19c-ORCLCDB-show-release │ │ ├── postgresql-f33-select-datnameoid-from-pg_database │ │ ├── postgresql-f33-select-pg_postmaster_start_time │ │ ├── postgresql-f33-select-pg_size_prettypg_database_sizepostgres │ │ ├── postgresql-f33-select-pg_size_prettypg_database_sizetemplate0 │ │ ├── postgresql-f33-select-pg_size_prettypg_database_sizetemplate1 │ │ ├── postgresql-f33-select-pg_stat_filebase14401modification-from-pg_database │ │ ├── postgresql-f33-select-pg_stat_filebase14401pg_versionmodification-from-pg_database │ │ ├── postgresql-f33-select-pg_stat_filebase14402modification-from-pg_database │ │ ├── postgresql-f33-select-pg_stat_filebase14402pg_versionmodification-from-pg_database │ │ ├── postgresql-f33-select-pg_stat_filebase1modification-from-pg_database │ │ ├── postgresql-f33-select-pg_stat_filebase1pg_versionmodification-from-pg_database │ │ ├── postgresql-f33-show-server_version │ │ ├── sql-server-2012-express-select-namecreate_datestate-from-sysdatabases │ │ ├── sql-server-2012-express-select-serverpropertyproductversion │ │ ├── sql-server-2012-express-select-servicename │ │ ├── sql-server-2012-express-select-sqlserver_start_time-from-sysdm_os_sys_info │ │ ├── sql-server-2012-express-select-version │ │ ├── sql-server-2012-express-use-master-exec-sp_spaceused │ │ ├── sql-server-2012-express-use-master-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ │ ├── sql-server-2012-express-use-model-exec-sp_spaceused │ │ ├── sql-server-2012-express-use-model-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ │ ├── sql-server-2012-express-use-msdb-exec-sp_spaceused │ │ ├── sql-server-2012-express-use-msdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ │ ├── sql-server-2012-express-use-tempdb-exec-sp_spaceused │ │ ├── sql-server-2012-express-use-tempdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ │ ├── sql-server-2017-on-linux-select-namecreate_datestate-from-sysdatabases │ │ ├── sql-server-2017-on-linux-select-serverpropertyproductversion │ │ ├── sql-server-2017-on-linux-select-servicename │ │ ├── sql-server-2017-on-linux-select-sqlserver_start_time-from-sysdm_os_sys_info │ │ ├── sql-server-2017-on-linux-select-version │ │ ├── sql-server-2017-on-linux-use-master-exec-sp_spaceused │ │ ├── sql-server-2017-on-linux-use-master-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ │ ├── sql-server-2017-on-linux-use-model-exec-sp_spaceused │ │ ├── sql-server-2017-on-linux-use-model-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ │ ├── sql-server-2017-on-linux-use-msdb-exec-sp_spaceused │ │ ├── sql-server-2017-on-linux-use-msdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ │ ├── sql-server-2017-on-linux-use-tempdb-exec-sp_spaceused │ │ ├── sql-server-2017-on-linux-use-tempdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ │ ├── sql-server-2019-select-namecreate_datestate-from-sysdatabases │ │ ├── sql-server-2019-select-serverpropertyproductversion │ │ ├── sql-server-2019-select-servicename │ │ ├── sql-server-2019-select-sqlserver_start_time-from-sysdm_os_sys_info │ │ ├── sql-server-2019-select-version │ │ ├── sql-server-2019-use-adventureworks2019-exec-sp_spaceused │ │ ├── sql-server-2019-use-adventureworks2019-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ │ ├── sql-server-2019-use-master-exec-sp_spaceused │ │ ├── sql-server-2019-use-master-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ │ ├── sql-server-2019-use-model-exec-sp_spaceused │ │ ├── sql-server-2019-use-model-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ │ ├── sql-server-2019-use-msdb-exec-sp_spaceused │ │ ├── sql-server-2019-use-msdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ │ ├── sql-server-2019-use-tempdb-exec-sp_spaceused │ │ └── sql-server-2019-use-tempdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc │ ├── df │ │ ├── aix │ │ ├── freebsd │ │ ├── linux │ │ ├── netbsd │ │ ├── openbsd │ │ └── solaris │ ├── dhcp │ │ ├── dhclient-wlan0-1.lease │ │ └── dhclient-wlan0-2.lease │ ├── dmidecode │ │ ├── S3000AHLX │ │ ├── S5000VSA │ │ ├── batteries │ │ │ ├── win10-dell-xps │ │ │ └── windows-10-notebook │ │ ├── dell-fx160 │ │ ├── dell-fx170 │ │ ├── dell-r620 │ │ ├── dell-r630 │ │ ├── dell-r640 │ │ ├── dell-r640-1 │ │ ├── dell-r720 │ │ ├── freebsd-6.2 │ │ ├── freebsd-8.1 │ │ ├── hp-dl180 │ │ ├── hp-dl360-gen7 │ │ ├── hp-dl360-gen7_2 │ │ ├── hp-dl360-gen8 │ │ ├── hp-proLiant-DL120-G6 │ │ ├── lenovo-thinkpad │ │ ├── linux-1 │ │ ├── linux-2.6 │ │ ├── macos-battery │ │ ├── memory │ │ │ ├── hynix-kingmax │ │ │ └── positivo-informatica │ │ ├── openbsd-3.7 │ │ ├── openbsd-3.8 │ │ ├── openbsd-4.5 │ │ ├── oracle-server-6.7-oda │ │ ├── oracle-server-x5-2 │ │ ├── psu │ │ │ ├── Dedibox_SC_SATA_2016 │ │ │ ├── Dedibox_XC_SSD_SATA_2016 │ │ │ ├── Dell_DL380p_Gen8_2 │ │ │ ├── Dell_DSS_1500 │ │ │ ├── Dell_Latitude_3550 │ │ │ ├── Dell_PowerEdge_R330 │ │ │ ├── Dell_PowerEdge_R330_2 │ │ │ ├── Dell_R630 │ │ │ ├── Fujitsu_ESPRIMO_P5730 │ │ │ ├── HP_1 │ │ │ ├── HP_Proliant_Microserver_Gen_8 │ │ │ ├── Kimsufi_OVH │ │ │ ├── MSI_MS-7817 │ │ │ ├── MSI_MS-7A72 │ │ │ ├── ProLiant_DL360p_Gen8_2 │ │ │ ├── ProLiant_DL380_Gen10 │ │ │ ├── ProLiant_DL380_Gen9 │ │ │ ├── ProLiant_DL380p_Gen8 │ │ │ ├── ProLiant_DL560_Gen8 │ │ │ ├── Supermicro_1 │ │ │ ├── Supermicro_2 │ │ │ ├── Supermicro_3 │ │ │ ├── Supermicro_4 │ │ │ ├── Supermicro_SYS-2028TP-HC1R │ │ │ ├── Supermicro_SYS-2028TP-HC1R_2 │ │ │ ├── Supermicro_X11DPU │ │ │ ├── Supermicro_X11SSL-CF │ │ │ ├── Unknown_1 │ │ │ ├── Workstation_Lenovo_10A9004TFR │ │ │ ├── nucIntel │ │ │ └── supermicro_SYS-5038ML-H8TRF │ │ ├── rhel-2.1 │ │ ├── rhel-3.4 │ │ ├── rhel-3.9 │ │ ├── rhel-4.3 │ │ ├── rhel-4.6 │ │ ├── rhel-5.6 │ │ ├── rhel-6.2-vmware-2vcpus │ │ ├── rhel-6.3-esx-1vcpu │ │ ├── sun-x2200-m2 │ │ ├── surface-go-2 │ │ ├── vmware │ │ ├── vmware-esx │ │ ├── vmware-esx-2.5 │ │ ├── windows │ │ ├── windows-2003R2-Hotfix │ │ ├── windows-2008-with-2-different-cpus │ │ ├── windows-2019-amd-epyc │ │ ├── windows-7 │ │ ├── windows-7.2 │ │ ├── windows-hyperV │ │ ├── windows-hyperV-2019 │ │ └── windows-xp │ ├── edid │ │ ├── EV2785 │ │ ├── IMP2262 │ │ ├── acer-al1716 │ │ ├── acer-al1716.2 │ │ ├── acer-al1717 │ │ ├── acer-al1717.2 │ │ ├── acer-al1916w │ │ ├── acer-al1917 │ │ ├── acer-b226wl │ │ ├── acer-b247y │ │ ├── acer-h6517abd │ │ ├── acer-k242hql │ │ ├── acer-p1203 │ │ ├── acer-p1206p │ │ ├── acer-p1283 │ │ ├── acer-p5260i │ │ ├── acer-r240hy │ │ ├── acer-sa240y │ │ ├── acer-v193 │ │ ├── acer-v193.2 │ │ ├── acer-v193.3 │ │ ├── acer-v193hqv │ │ ├── acer-v193l │ │ ├── acer-v193l.2 │ │ ├── acer-v193w │ │ ├── acer-v196l │ │ ├── acer-v203h │ │ ├── acer-v203w │ │ ├── acer-v223hq │ │ ├── acer-v226hql │ │ ├── acer-v226hql.2 │ │ ├── acer-v247y │ │ ├── acer-v276hl │ │ ├── acer-x125h │ │ ├── acer-x128h │ │ ├── acer-xga-pj │ │ ├── aic-e-191 │ │ ├── benq-bl2420-tf │ │ ├── benq-bl2420-tf.2 │ │ ├── benq-bl2420-tf.3 │ │ ├── crt.13 │ │ ├── crt.E55 │ │ ├── crt.LG-Studioworks-N2200P │ │ ├── crt.SM550S │ │ ├── crt.SM550V │ │ ├── crt.dell-d1626ht │ │ ├── crt.dell-e190s │ │ ├── crt.dell-p1110 │ │ ├── crt.dell-p190s │ │ ├── crt.dell-p790 │ │ ├── crt.emc0313 │ │ ├── crt.hyundai-ImageQuest-L70S+ │ │ ├── crt.iiyama-1451 │ │ ├── crt.iiyama-404 │ │ ├── crt.iiyama-410pro │ │ ├── crt.leia │ │ ├── crt.med2914 │ │ ├── crt.nokia-valuegraph-447w │ │ ├── crt.sony-gdm400ps │ │ ├── crt.sony-gdm420 │ │ ├── crt.test_box_lmontel │ │ ├── iiyama-PL2779A │ │ ├── lcd.20inches │ │ ├── lcd.Elonex-PR600 │ │ ├── lcd.HP-Pavilion-ZV6000 │ │ ├── lcd.acer-al19161.1 │ │ ├── lcd.acer-al19161.2 │ │ ├── lcd.acer-al19161.3 │ │ ├── lcd.acer-al19161.4 │ │ ├── lcd.acer-al1921 │ │ ├── lcd.acer-asp1680 │ │ ├── lcd.acer-b196hql │ │ ├── lcd.acer-b226hql │ │ ├── lcd.acer-b226hql.28.2016 │ │ ├── lcd.acer-b243h │ │ ├── lcd.acer-g227hql │ │ ├── lcd.acer-g236hl │ │ ├── lcd.acer-h226hql │ │ ├── lcd.acer-k222hql │ │ ├── lcd.acer-ka240hq │ │ ├── lcd.acer-r221q │ │ ├── lcd.acer-s273hl │ │ ├── lcd.acer-sa220q │ │ ├── lcd.acer-v193.1 │ │ ├── lcd.acer-v193.2 │ │ ├── lcd.acer-v193.3 │ │ ├── lcd.acer-v243h │ │ ├── lcd.acer-v246hl │ │ ├── lcd.acer-x193hq │ │ ├── lcd.b-101750 │ │ ├── lcd.benq-t904 │ │ ├── lcd.blino │ │ ├── lcd.cmc-17-AD │ │ ├── lcd.compaq-evo-n1020v │ │ ├── lcd.dell-2001fp │ │ ├── lcd.dell-U2410 │ │ ├── lcd.dell-U2413 │ │ ├── lcd.dell-U2415 │ │ ├── lcd.dell-inspiron-6400 │ │ ├── lcd.eizo-l997 │ │ ├── lcd.fujitsu-a171 │ │ ├── lcd.gericom-cy-96 │ │ ├── lcd.hp-l1950 │ │ ├── lcd.hp-nx-7000 │ │ ├── lcd.hp-nx-7010 │ │ ├── lcd.iiyama-pl2409hd │ │ ├── lcd.internal │ │ ├── lcd.lenovo-3000-v100 │ │ ├── lcd.lenovo-w500 │ │ ├── lcd.lg-l1960.1 │ │ ├── lcd.lg-l1960.2 │ │ ├── lcd.lg.tv.22MT44DP-PZ │ │ ├── lcd.philips-150s │ │ ├── lcd.philips-180b2 │ │ ├── lcd.philips-241b-vga │ │ ├── lcd.philips-288p6-hdmi │ │ ├── lcd.philips-288p6-vga │ │ ├── lcd.presario-R4000 │ │ ├── lcd.rafael │ │ ├── lcd.regis │ │ ├── lcd.samsung-191n │ │ ├── lcd.samsung-2494hm │ │ ├── lcd.samsung-s22c450 │ │ ├── lcd.samsung-s24e450 │ │ ├── lcd.tv.VQ32-1T │ │ ├── lcd.viewsonic-vx715 │ │ ├── lenovo-LT2452 │ │ ├── lenovo-T24v-10 │ │ └── samsung-s22e390 │ ├── hdparm │ │ ├── linux1 │ │ ├── linux2 │ │ ├── linux3 │ │ └── linux4 │ ├── hpacucli │ │ ├── 1-ctrl-all-show-config │ │ ├── README │ │ ├── sample1-drives │ │ ├── sample1-slots │ │ ├── sample1-storage │ │ ├── sample2-drives │ │ ├── sample2-slots │ │ ├── sample2-storage │ │ ├── sample3-drives │ │ ├── sample3-slots │ │ └── sample3-storage │ ├── ifconfig │ │ ├── aix-5.3 │ │ ├── aix-6.1 │ │ ├── dell-xt2 │ │ ├── dragonfly-1 │ │ ├── freebsd-4 │ │ ├── freebsd-8.1 │ │ ├── freebsd-bis │ │ ├── freebsd-ter │ │ ├── hpux1-lan0 │ │ ├── hpux2-lan0 │ │ ├── linux-archlinux │ │ ├── linux-bonding │ │ ├── linux-el8 │ │ ├── linux-fc17 │ │ ├── linux-rhel5.6 │ │ ├── oi-2021.10 │ │ ├── opensolaris │ │ └── solaris-10 │ ├── ipmitool │ │ └── fru │ │ │ ├── dell-r630 │ │ │ ├── dell-r640 │ │ │ ├── dell-r720 │ │ │ ├── hp-dl360-gen7 │ │ │ ├── hp-dl360-gen7_2 │ │ │ ├── hp-dl360-gen8 │ │ │ └── sun-x2200-m2 │ ├── ipmitool_lan_print │ │ └── sample1 │ ├── license │ │ └── adobe │ │ │ ├── README │ │ │ ├── cache.db-sample1 │ │ │ └── cache.db-sample1.db │ ├── lspci │ │ ├── dell-xt2 │ │ ├── linux-2 │ │ ├── linux-asus-portable │ │ ├── linux-asus-portable.nvidia-settings │ │ ├── linux-asus-portable.nvidia-settings.gpus │ │ ├── linux-imac │ │ ├── linux-imac.xdpyinfo │ │ ├── linux-xps │ │ ├── linux-xps.xrandr │ │ ├── nvidia-1 │ │ ├── nvidia-1.nvidia-settings │ │ ├── nvidia-1.nvidia-settings.gpus │ │ └── nvidia-1.xrandr │ ├── lsusb │ │ ├── apc-ups │ │ ├── dell-xt2 │ │ └── ubuntu-bar-code-scanner │ ├── mount │ │ ├── darwin │ │ ├── freebsd │ │ └── linux │ ├── netstat │ │ ├── aix-5.3a │ │ ├── aix-5.3c │ │ ├── aix-6.1a │ │ ├── aix-6.1b │ │ ├── hpux1 │ │ ├── hpux2 │ │ ├── linux1 │ │ ├── macosx1 │ │ ├── netbsd │ │ └── openbsd │ ├── powersupplies │ │ ├── dmidecode_1.txt │ │ ├── dmidecode_2.txt │ │ ├── dmidecode_3.txt │ │ ├── dmidecode_4.txt │ │ ├── fru_1.txt │ │ ├── fru_2.txt │ │ ├── fru_3.txt │ │ └── fru_4.txt │ ├── ps │ │ ├── busybox │ │ ├── linux │ │ └── macos │ ├── rms │ │ └── rms-7.0.0.1-Parameters.reg │ ├── stat │ │ ├── debian-11 │ │ ├── macos-10.15 │ │ └── old-fedora │ ├── teamviewer │ │ ├── teamviewer-14.1.3399-TeamViewer.reg │ │ ├── teamviewer-15.27.3-TeamViewer.reg │ │ ├── teamviewer-info-15.11.6-RPM │ │ └── teamviewer-info-15.65.4-DEB │ ├── tw_cli │ │ ├── cards │ │ ├── ports │ │ ├── storage │ │ └── units │ └── xorg │ │ ├── linux-ati-1 │ │ ├── linux-ati-2 │ │ ├── linux-intel-1 │ │ ├── linux-intel-2 │ │ ├── linux-intel-3 │ │ ├── linux-intel-4 │ │ ├── linux-nouveau │ │ ├── linux-nvidia-1 │ │ ├── linux-nvidia-2 │ │ ├── linux-nvidia-3 │ │ ├── linux-vesa-1 │ │ ├── linux-vesa-3 │ │ └── openbsd ├── hpux │ ├── CIMUtil │ │ ├── hpux2 │ │ └── hpux4 │ ├── README │ ├── bdf │ │ ├── hpux1-nfs │ │ ├── hpux1-vxfs │ │ ├── hpux2-nfs │ │ └── hpux2-vxfs │ ├── cprop │ │ ├── hpux4-cpu │ │ └── hpux4-memory │ ├── cstm │ │ ├── hpux-MEMORY │ │ ├── hpux-mem │ │ ├── hpux1-MEMORY │ │ ├── hpux1-cpu │ │ ├── hpux1-system │ │ ├── hpux2-MEMORY │ │ ├── hpux2-cpu │ │ └── hpux2-system │ ├── fstyp │ │ ├── hpux1 │ │ └── hpux2 │ ├── getMPInfo.cgi │ │ └── hpux2 │ ├── hpvminfo │ │ ├── hpux3 │ │ └── hpux4 │ ├── ioscan │ │ ├── hpux-ioa │ │ ├── hpux-processor │ │ ├── hpux-tape │ │ ├── hpux1-ba │ │ ├── hpux1-disk │ │ ├── hpux1-ext_bus │ │ ├── hpux1-fc │ │ ├── hpux1-ioa │ │ ├── hpux1-processor │ │ ├── hpux1-tape │ │ ├── hpux2-ba │ │ ├── hpux2-disk │ │ ├── hpux2-ext_bus │ │ ├── hpux2-fc │ │ ├── hpux2-ioa │ │ ├── hpux2-processor │ │ ├── hpux3-ext_bus │ │ └── hpux4-fc │ ├── lanadmin │ │ ├── hpux1-0 │ │ ├── hpux1-1 │ │ ├── hpux2-0 │ │ └── hpux2-1 │ ├── lanscan │ │ ├── hpux │ │ ├── hpux1 │ │ └── hpux2 │ ├── machinfo │ │ ├── hpux_11.23.ia64 │ │ ├── hpux_11.31-1 │ │ ├── hpux_11.31-2 │ │ ├── hpux_11.31-3 │ │ ├── hpux_11.31-superdome │ │ └── hpux_11.31_3xia64 │ ├── model │ │ ├── hpux1 │ │ ├── hpux2 │ │ ├── hpux3 │ │ └── hpux4 │ ├── netstat │ │ ├── hpux │ │ ├── hpux1 │ │ ├── hpux2 │ │ └── hpux3 │ ├── nwmgr │ │ ├── sample1 │ │ └── sample2 │ ├── swapinfo │ │ ├── hpux │ │ ├── hpux1 │ │ └── hpux2 │ ├── swlist │ │ ├── hpux1 │ │ └── hpux2 │ └── uptime │ │ └── sample1 ├── linux │ ├── README │ ├── antivirus │ │ ├── bduitool-7.0.3.2239 │ │ ├── cortex-xdr-8.2.1.120305-info │ │ ├── cortex-xdr-8.2.1.120305-info-query │ │ ├── cortex-xdr-8.2.1.120305-runtime-query │ │ ├── defender-101.23062.0010.json │ │ ├── not-expected-output.json │ │ └── sentinelone-30.1.1.10 │ ├── ddcprobe │ │ ├── 98LMTF053166 │ │ ├── B101AW03 │ │ ├── B154EW02 │ │ ├── HT009154WU2 │ │ ├── S2202W │ │ ├── no-edid │ │ └── virtualbox-1 │ ├── distro │ │ ├── astra_license-astralinux-1.8 │ │ ├── build_version-astralinux-1.8 │ │ ├── centos-release-centos-7.9 │ │ ├── debian_version-debian-11.2 │ │ ├── os-release-astralinux-1.8 │ │ ├── os-release-centos-7.9 │ │ ├── os-release-debian-11.2 │ │ └── os-release-fedora-35 │ ├── docker │ │ ├── docker-network-inspect │ │ └── docker-network-ls │ ├── equery │ │ ├── gentoo1 │ │ └── gentoo2 │ ├── firewall │ │ ├── fedora_systemctl_status_firewalld.service_ON.txt │ │ ├── fedora_systemctl_status_firewalld.service_ON_disabled.txt │ │ ├── ubuntu_ufw_status_OFF.txt │ │ └── ubuntu_ufw_status_ON.txt │ ├── gentoo │ │ └── equery │ │ │ ├── 0.1.4 │ │ │ ├── 0.3.0 │ │ │ └── README │ ├── hal │ │ ├── dell-xt2 │ │ └── rh4-kvm │ ├── hponcfg │ │ ├── sample1 │ │ └── sample2 │ ├── ip │ │ ├── default-gateway-1 │ │ ├── default-gateway-2 │ │ ├── default-gateway-3 │ │ ├── ip_addr-1 │ │ ├── ip_addr-2 │ │ ├── ip_addr-3 │ │ ├── ip_addr-4 │ │ ├── ip_addr-5 │ │ └── ip_addr-el8 │ ├── iwconfig │ │ ├── sample1 │ │ └── sample2 │ ├── megacli │ │ ├── set1_EncInfo │ │ ├── set1_PDlist │ │ ├── set1_ShowSummary │ │ ├── set1_adpCount │ │ ├── set2_EncInfo │ │ ├── set2_PDlist │ │ ├── set2_ShowSummary │ │ ├── set2_adpCount │ │ ├── set3_EncInfo │ │ ├── set3_PDlist │ │ ├── set3_ShowSummary │ │ ├── set4_EncInfo │ │ ├── set4_PDlist │ │ ├── set4_ShowSummary │ │ ├── set6_AdpPciInfo │ │ ├── set6_LDinfo │ │ ├── set6_PDlist │ │ ├── set7_AdpPciInfo │ │ ├── set7_LDinfo │ │ └── set7_PDlist │ ├── megasasctl │ │ └── sample │ ├── mpt-status │ │ ├── sample1 │ │ └── sample2 │ ├── multipath │ │ ├── multipath1 │ │ └── multipath2 │ ├── packaging │ │ ├── dpkg │ │ ├── fedora-35 │ │ ├── flatpak │ │ ├── flatpak_com.obsproject.Studio_stable_user │ │ ├── flatpak_com.vscodium.codium_stable_system │ │ ├── flatpak_org.freedesktop.Platform.GL.default_19.08_system │ │ ├── flatpak_org.freedesktop.Platform.GL.default_20.08_system │ │ ├── flatpak_org.freedesktop.Platform.GL.default_20.08_user │ │ ├── flatpak_org.freedesktop.Sdk.Locale_20.08_system │ │ ├── flatpak_org.freedesktop.Sdk_20.08_system │ │ ├── flatpak_org.gaphor.Gaphor_stable_user │ │ ├── flatpak_org.gnome.Platform.Locale_3.36_system │ │ ├── flatpak_org.gnome.Platform.Locale_3.38_user │ │ ├── flatpak_org.gnome.Platform_3.36_system │ │ ├── flatpak_org.gnome.Platform_3.38_user │ │ ├── nix │ │ ├── pacman │ │ ├── rpm │ │ ├── snap │ │ ├── snap_kde-frameworks-5-core18 │ │ ├── snap_kdenlive │ │ └── snap_scrcpy │ ├── proc │ │ ├── 1-environ.txt │ │ ├── cpuinfo │ │ │ ├── cpuinfo-vmware-esx │ │ │ ├── esx │ │ │ ├── linux-2.6.35-1-core-2-thread │ │ │ ├── linux-686-1 │ │ │ ├── linux-686-samsung-nc10-1 │ │ │ ├── linux-alpha-1 │ │ │ ├── linux-armel-1 │ │ │ ├── linux-armel-2 │ │ │ ├── linux-armel-3 │ │ │ ├── linux-hp-dl180 │ │ │ ├── linux-ia64-1 │ │ │ ├── linux-mips-1 │ │ │ ├── linux-ppc-1 │ │ │ ├── linux-ppc-2 │ │ │ ├── linux-ppc-3 │ │ │ ├── linux-raspberry-pi-3-model-b │ │ │ ├── linux-raspberry-pi-3-model-b-on-bookworm │ │ │ ├── linux-sparc-1 │ │ │ ├── oracle-server-6.7-oda │ │ │ ├── rhel-5.6 │ │ │ ├── rhel-6.2-vmware-2vcpus │ │ │ ├── rhel-6.3-esx-1vcpu │ │ │ └── toshiba-r630-2-core │ │ └── scsi │ │ │ ├── linux1 │ │ │ ├── linux2 │ │ │ ├── linux3 │ │ │ └── linux4 │ ├── rhn-systemid │ │ └── ID-1232324425 │ ├── smartctl │ │ ├── sample1 │ │ ├── sample2 │ │ ├── sample3 │ │ ├── sample4 │ │ ├── sample5 │ │ ├── sample6 │ │ ├── sample7 │ │ ├── sample8 │ │ └── sample9 │ ├── storages │ │ ├── README │ │ ├── f31-nanobox.dump │ │ ├── f31-simple-qemu.dump │ │ ├── f32-simple-qemu-failing-smartctl.dump │ │ ├── f33-imac.dump │ │ ├── sles-multipath-sas.dump │ │ ├── ubuntu-18.04.5-xps.dump │ │ └── ubuntu-dell-xps.dump │ ├── systool │ │ └── sample1 │ └── udev │ │ └── ssd ├── lvm │ └── linux │ │ ├── lvs │ │ ├── README │ │ └── linux-1 │ │ ├── pvs │ │ ├── README │ │ ├── linux-1 │ │ ├── linux-2 │ │ └── linux-3 │ │ └── vgs │ │ ├── README │ │ ├── linux-1 │ │ ├── linux-2 │ │ └── linux-3 ├── macos │ ├── SysProfile │ │ └── sample1.yaml │ ├── antivirus │ │ ├── cortex-xdr-8.2.1.47908-info │ │ ├── cortex-xdr-8.2.1.47908-info-query │ │ ├── cortex-xdr-8.2.1.47908-runtime-query │ │ ├── defender-101.98.30.json │ │ ├── sentinelone-epp-24.1.2.7444-status │ │ └── sentinelone-epp-24.1.2.7444-version │ ├── firewall │ │ ├── defaults_read_preferences_com_alf_globalstate.txt │ │ ├── launctl_list.txt │ │ ├── launctl_list_unloaded.txt │ │ └── procinfo.txt │ ├── ifconfig │ │ ├── imac-27-intel-2019-macosx-10.14.6 │ │ ├── imac-27-intel-2019-macosx-10.14.6-networksetup │ │ ├── macbook-m1-pro-2021-macosx-14.5 │ │ ├── macbook-m1-pro-2021-macosx-14.5-networksetup │ │ ├── macbook-pro-16-apple-silicon-2021-macosx-14.4 │ │ ├── macbook-pro-16-apple-silicon-2021-macosx-14.4-networksetup │ │ ├── macbook-pro-16-intel-2019-catalina │ │ ├── macbook-pro-16-intel-2019-catalina-networksetup │ │ ├── macosx-01 │ │ └── macosx-01-networksetup │ ├── ioreg │ │ ├── AppleBacklightDisplay │ │ ├── AppleCLCD2 │ │ ├── AppleCLCD2-2 │ │ ├── AppleDisplay │ │ ├── IOPlatformExpertDevice │ │ ├── IOPlatformExpertDevice-2 │ │ ├── IOUSBDevice1 │ │ └── IOUSBDevice2 │ ├── storages │ │ └── sample1.xml │ ├── sysctl │ │ ├── 10.6-macmini │ │ └── 11.0-apple-M1 │ └── system_profiler │ │ ├── 10.11-system_profiler_SPPowerDataType.txt │ │ ├── 10.4-powerpc │ │ ├── 10.5-powerpc │ │ ├── 10.6-intel │ │ ├── 10.6-macmini │ │ ├── 10.6-system_profiler_Software_SPSoftwareDataType │ │ ├── 10.6.5-dual-monitor │ │ ├── 10.6.6-intel │ │ ├── 10.8-system_profiler_SPApplicationsDataType.example.txt │ │ ├── 10.8-system_profiler_SPApplicationsDataType_-xml.example.xml │ │ ├── 11.0-apple-M1 │ │ ├── SPCardReaderDataType.xml │ │ ├── SPCardReaderDataType2.xml │ │ ├── SPCardReaderDataType_with_inserted_card.xml │ │ ├── SPDiscBurningDataType.xml │ │ ├── SPDiscBurningDataType2.xml │ │ ├── SPDiscBurningDataType3.xml │ │ ├── SPFireWireDataType.xml │ │ ├── SPFireWireDataType2.xml │ │ ├── SPSerialATADataType.xml │ │ ├── SPSerialATADataType2.xml │ │ ├── SPSerialATADataType3.xml │ │ ├── SPUSBDataType.xml │ │ ├── SPUSBDataType2.xml │ │ ├── SPUSBDataType3.xml │ │ ├── SPUSBDataType4.xml │ │ ├── SPUSBDataType_with_inserted_dvd.xml │ │ ├── SPUSBDataType_without_inserted_dvd.xml │ │ ├── asus-geforce-gt-730 │ │ ├── charged-SPPowerDataType │ │ ├── charging-SPPowerDataType │ │ ├── datatypes │ │ ├── dual-display-#475 │ │ ├── fiberchannel │ │ ├── mojave-dual-video-cards │ │ ├── sample1.SPApplicationsDataType │ │ ├── sample1.SPApplicationsDataType.results.txt │ │ ├── sample2.SPApplicationsDataType │ │ ├── sample2.SPApplicationsDataType.results.txt │ │ ├── sample3.SPApplicationsDataType │ │ ├── sample3.SPApplicationsDataType.results.txt │ │ ├── sample4.SPApplicationsDataType │ │ ├── sample4.SPApplicationsDataType.results.txt │ │ ├── sample5.SPApplicationsDataType-xml │ │ ├── sample5.SPApplicationsDataType-xml.results.txt │ │ ├── sample6.SPApplicationsDataType-xml │ │ └── sample6.SPApplicationsDataType-xml.results.txt ├── messages │ ├── message2.xml │ └── message3.xml ├── solaris │ ├── df │ │ ├── oi-2021.10 │ │ └── zfs-samples │ ├── dladm │ │ ├── oi-2021.10-e1000g0 │ │ ├── oi-2021.10-e1000g0_1 │ │ └── oi-2021.10-lo0 │ ├── fcinfo_hba-port │ │ ├── sample-1 │ │ └── sample-2 │ ├── iostat │ │ ├── oi-2021.10 │ │ ├── oi151 │ │ ├── sample1 │ │ ├── sample2 │ │ ├── sample3-wrong-vendor-product │ │ └── sample4-slash-char-in-model │ ├── kstat │ │ ├── kstat_bge_ce.txt │ │ ├── sample1 │ │ ├── sample2 │ │ ├── sample3 │ │ └── sample4 │ ├── mount │ │ ├── mount_-v_sample1 │ │ ├── oi-2021.10 │ │ └── zfs-samples │ ├── opensolaris │ │ ├── release-1 │ │ └── smbios-1 │ ├── pkg-info │ │ ├── installdate-oi-2021.10 │ │ ├── installdate-solaris-2009.11.11 │ │ ├── sample │ │ ├── sample-oi-2021.10 │ │ ├── sample-oi151 │ │ └── sample-sol10 │ ├── prtconf │ │ ├── sparc1 │ │ ├── sparc2 │ │ └── sparc3 │ ├── prtdiag │ │ ├── oi151 │ │ ├── sample1 │ │ ├── sample2 │ │ ├── sample3 │ │ ├── sample4 │ │ ├── sample5 │ │ ├── sample6 │ │ ├── sample7 │ │ └── sample8 │ ├── psrinfo │ │ ├── e6900-psrinfo_v │ │ ├── e6900-psrinfo_vp │ │ ├── giration-psrinfo_v │ │ ├── giration-psrinfo_vp │ │ ├── oi-2021.10-psrinfo_v │ │ ├── oi-2021.10-psrinfo_vp │ │ ├── sample1-psrinfo_v │ │ ├── solaris11-psrinfo_v │ │ ├── solaris11-psrinfo_vp │ │ ├── sparc-t5-psrinfo_v │ │ ├── sparc-t5-psrinfo_vp │ │ ├── t1-psrinfo_v │ │ ├── t1-psrinfo_vp │ │ ├── t5120-psrinfo_v │ │ ├── t5120-psrinfo_vp │ │ ├── unstable10s-psrinfo_v │ │ ├── unstable10s-psrinfo_vp │ │ ├── unstable10x-psrinfo_v │ │ ├── unstable10x-psrinfo_vp │ │ ├── unstable11s-psrinfo_v │ │ ├── unstable11s-psrinfo_vp │ │ ├── unstable11x-psrinfo_v │ │ ├── unstable11x-psrinfo_vp │ │ ├── unstable9s-psrinfo_v │ │ ├── unstable9s-psrinfo_vp │ │ ├── unstable9x-psrinfo_v │ │ ├── unstable9x-psrinfo_vp │ │ ├── v240-psrinfo_v │ │ ├── v240-psrinfo_vp │ │ ├── v490-psrinfo_v │ │ └── v490-psrinfo_vp │ ├── release │ │ ├── openindiana-151 │ │ ├── sample1 │ │ ├── sample2 │ │ ├── sample3 │ │ ├── sample4 │ │ ├── sample5 │ │ ├── sample6 │ │ ├── sample7 │ │ └── sample8 │ ├── showrev │ │ ├── SPARC-1 │ │ ├── SPARC-2 │ │ ├── x86-1 │ │ ├── x86-2 │ │ └── x86-3 │ ├── smbios │ │ ├── oi-2021.10 │ │ ├── x86-1 │ │ └── x86-3 │ └── virtinfo │ │ └── solaris ├── ssl │ ├── README │ ├── cnf │ │ ├── alternate.cnf │ │ ├── bad.cnf │ │ ├── ca.cnf │ │ ├── good.cnf │ │ └── wrong.cnf │ ├── crt │ │ ├── alternate.pem │ │ ├── bad.pem │ │ ├── ca.pem │ │ ├── good.pem │ │ └── wrong.pem │ ├── generate.sh │ └── key │ │ ├── alternate.pem │ │ ├── bad.pem │ │ ├── ca.pem │ │ ├── good.pem │ │ └── wrong.pem ├── virtualization │ ├── README │ ├── jails │ │ └── sample1 │ ├── lxc │ │ ├── 200-proxmox │ │ ├── arch-linux │ │ ├── config │ │ ├── debian-hosting │ │ ├── lxc-info_-n_name1 │ │ └── lxc-info_-n_name2 │ ├── openvz │ │ ├── example-config-new.conf │ │ ├── example-config-old.conf │ │ ├── status-sample1 │ │ └── status_sample1 │ ├── prlctl │ │ └── sample1 │ ├── vboxmanage │ │ ├── sample1 │ │ ├── sample2 │ │ └── sample3 │ ├── virsh │ │ ├── dumpxml1 │ │ ├── dumpxml2 │ │ ├── dumpxml3 │ │ ├── dumpxml4 │ │ ├── dumpxml5_lxc │ │ ├── list1 │ │ └── list2 │ ├── virtuozzo │ │ ├── sample1 │ │ ├── sample1-ctid-conf │ │ ├── sample1-getmac-101 │ │ ├── sample1-getmac-102 │ │ ├── sample1-getmac-103 │ │ ├── sample2 │ │ ├── sample2-ctid-conf │ │ ├── sample2-getmac-136 │ │ ├── sample2-getmac-1951898610 │ │ ├── sample2-getmac-208185 │ │ ├── sample2-getmac-21179 │ │ └── sample2-getmac-8102 │ ├── xe │ │ ├── xe_none │ │ ├── xenserver-6.2_vm_list │ │ ├── xenserver-6.2_vm_param_list_001 │ │ ├── xenserver-6.2_vm_param_list_002 │ │ ├── xenserver-6.2_vm_param_list_003 │ │ ├── xenserver-6.2_vm_param_list_004 │ │ ├── xenserver-6.2_vm_param_list_005 │ │ ├── xenserver-6.2_vm_param_list_006 │ │ ├── xenserver-6.2_vm_param_list_007 │ │ ├── xenserver-6.2_vm_param_list_008 │ │ ├── xenserver-6.2_vm_param_list_009 │ │ └── xenserver-6.2_vm_param_list_010 │ └── xm │ │ ├── xl_list │ │ ├── xl_list2 │ │ ├── xl_list_-v_vmname │ │ ├── xm_list │ │ ├── xm_list2 │ │ └── xm_list_-l_vmname ├── walks │ ├── force10s.walk │ ├── sample1.walk │ ├── sample2.walk │ ├── sample3.walk │ ├── sample4.result │ ├── sample4.walk │ ├── sample5.walk │ ├── sample6.result │ └── sample6.walk ├── win32 │ ├── .gitattributes │ ├── README │ ├── powercfg │ │ ├── win10-dell-xps.xml │ │ └── windows-10-notebook.xml │ ├── powershell │ │ └── 10_russian.txt │ ├── registry │ │ ├── 10-DNSRegisteredAdapters.reg │ │ ├── 10-DomainProfile.reg │ │ ├── 10-Interfaces.reg │ │ ├── 10-NetworkList.reg │ │ ├── 10-PublicProfile.reg │ │ ├── 10-StandAlone-LogonUI.reg │ │ ├── 10-StandardProfile.reg │ │ ├── 10_russian-Uninstall.reg │ │ ├── 11-AzureAD-LogonUI.reg │ │ ├── 11-AzureAD-S-1-12-1-1778064242-1251273316-772277320-2482684374.reg │ │ ├── 2003-CentralProcessor.reg │ │ ├── 2003R2-Hotfix-CentralProcessor.reg │ │ ├── 2003SP2-CentralProcessor.reg │ │ ├── 2008-with-2-different-cpus-CentralProcessor.reg │ │ ├── 2019-amd-epyc-CentralProcessor.reg │ │ ├── 7-AD-LogonUI.reg │ │ ├── 7-CentralProcessor.reg │ │ ├── 7-Network.reg │ │ ├── 7-USB.reg │ │ ├── 7-USBPRINT.reg │ │ ├── 7_firewall-DNSRegisteredAdapters.reg │ │ ├── 7_firewall-DomainProfile.reg │ │ ├── 7_firewall-Interfaces.reg │ │ ├── 7_firewall-NetworkList.reg │ │ ├── 7_firewall-PublicProfile.reg │ │ ├── 7_firewall-StandardProfile.reg │ │ ├── 7bis-USB.reg │ │ ├── 7bis-USBPRINT.reg │ │ ├── 7ter-USB.reg │ │ ├── 7ter-USBPRINT.reg │ │ ├── amd-radeon-rx6600xt-{4d36e968-e325-11ce-bfc1-08002be10318}.reg │ │ ├── glpi-agent-audit-test.reg │ │ ├── hp-printer-USB.reg │ │ ├── hp-printer-USBPRINT.reg │ │ ├── intel+nvidia-{4d36e968-e325-11ce-bfc1-08002be10318}.reg │ │ ├── intel-hd-graphics-{4d36e968-e325-11ce-bfc1-08002be10318}.reg │ │ ├── mssql-SQL.reg │ │ ├── mssql-Setup.reg │ │ ├── mssql-Uninstall.reg │ │ ├── mssql_engine-SQL.reg │ │ ├── mssql_engine-Setup.reg │ │ ├── mssql_engine-Uninstall.reg │ │ ├── nvidia-geforce-rtx-2060-super-{4d36e968-e325-11ce-bfc1-08002be10318}.reg │ │ ├── office_2010_1.reg │ │ ├── office_2010_2.reg │ │ ├── office_2016_01.reg │ │ ├── office_2016_02.reg │ │ ├── xp-CentralProcessor.reg │ │ ├── xp-Uninstall.reg │ │ ├── xp-{4D36E972-E325-11CE-BFC1-08002BE10318}.reg │ │ ├── xppro1-USB.reg │ │ ├── xppro1-USBPRINT.reg │ │ ├── xppro2-USB.reg │ │ └── xppro2-USBPRINT.reg │ └── wmi │ │ ├── 10-StandAlone-Win32_UserAccount.wmi │ │ ├── 10-Win32_NetworkAdapter.wmi │ │ ├── 10-Win32_NetworkAdapterConfiguration.wmi │ │ ├── 10-net-MSFT_NetAdapter.wmi │ │ ├── 10-net-Win32_NetworkAdapter.wmi │ │ ├── 10-net-Win32_NetworkAdapterConfiguration.wmi │ │ ├── 11-AzureAD-Win32_ComputerSystem.wmi │ │ ├── 2003-Win32_PhysicalMemory.wmi │ │ ├── 2003-Win32_PhysicalMemoryArray.wmi │ │ ├── 2003-Win32_Processor.wmi │ │ ├── 2003R2-Hotfix-Win32_Processor.wmi │ │ ├── 2003SP2-Win32_PhysicalMemory.wmi │ │ ├── 2003SP2-Win32_PhysicalMemoryArray.wmi │ │ ├── 2003SP2-Win32_Processor.wmi │ │ ├── 2008-Enterprise-Win32_DiskDrive.wmi │ │ ├── 2008-Enterprise-Win32_LogicalDisk.wmi │ │ ├── 2008-Enterprise-Win32_OperatingSystem.wmi │ │ ├── 2008-MSVM_ComputerSystem.wmi │ │ ├── 2008-MSVM_MemorySettingData.wmi │ │ ├── 2008-MSVM_ProcessorSettingData.wmi │ │ ├── 2008-with-2-different-cpus-Win32_Processor.wmi │ │ ├── 2019-amd-epyc-Win32_Processor.wmi │ │ ├── 7-AD-Win32_UserAccount.wmi │ │ ├── 7-CIM_LogicalDevice.wmi │ │ ├── 7-Win32_NetworkAdapter.wmi │ │ ├── 7-Win32_NetworkAdapterConfiguration.wmi │ │ ├── 7-Win32_PhysicalMemory.wmi │ │ ├── 7-Win32_PhysicalMemoryArray.wmi │ │ ├── 7-Win32_Processor.wmi │ │ ├── 7_firewall-Win32_NetworkAdapter.wmi │ │ ├── 7_firewall-Win32_NetworkAdapterConfiguration.wmi │ │ ├── amd-radeon-rx6600xt-Win32_VideoController.wmi │ │ ├── bar-code-scanner-CIM_LogicalDevice.wmi │ │ ├── intel+nvidia-Win32_VideoController.wmi │ │ ├── intel-hd-graphics-Win32_VideoController.wmi │ │ ├── latitude-7480-MSFT_PhysicalDisk.wmi │ │ ├── latitude-7480-Win32_DiskDrive.wmi │ │ ├── nvidia-geforce-rtx-2060-super-Win32_VideoController.wmi │ │ ├── office_2016_01-SoftwareLicensingProduct.wmi │ │ ├── proxmox-Win32_Bios.wmi │ │ ├── proxmox-Win32_ComputerSystem.wmi │ │ ├── unknown-MSVM_ComputerSystem.wmi │ │ ├── vpn-down-MSFT_NetAdapter.wmi │ │ ├── vpn-down-Win32_NetworkAdapter.wmi │ │ ├── vpn-down-Win32_NetworkAdapterConfiguration.wmi │ │ ├── vpn-up-MSFT_NetAdapter.wmi │ │ ├── vpn-up-Win32_NetworkAdapter.wmi │ │ ├── vpn-up-Win32_NetworkAdapterConfiguration.wmi │ │ ├── win10-crypt-Win32_DiskDrive.wmi │ │ ├── win10-crypt-Win32_EncryptableVolume.wmi │ │ ├── win10-crypt-Win32_LogicalDisk.wmi │ │ ├── win10-crypt-Win32_Volume.wmi │ │ ├── win10-edu-2020-fr-MSFT_PhysicalDisk.wmi │ │ ├── win10-edu-2020-fr-Win32_CDROMDrive.wmi │ │ ├── win7-sp1-x64-Win32_DiskDrive.wmi │ │ ├── win7-sp1-x64-Win32_LogicalDisk.wmi │ │ ├── win7-sp1-x64-Win32_OperatingSystem.wmi │ │ ├── win7-sp1-x64-Win32_Volume.wmi │ │ ├── winxp-sp3-x86-Win32_LogicalDisk.wmi │ │ ├── winxp-sp3-x86-Win32_OperatingSystem.wmi │ │ ├── xp-Win32_NetworkAdapter.wmi │ │ ├── xp-Win32_NetworkAdapterConfiguration.wmi │ │ ├── xp-Win32_PhysicalMemory.wmi │ │ ├── xp-Win32_PhysicalMemoryArray.wmi │ │ ├── xp-Win32_Processor.wmi │ │ ├── xp-Win32_QuickFixEngineering.wmi │ │ └── xppro2-CIM_LogicalDevice.wmi └── xml │ └── response │ ├── message1.xml │ ├── message2.xml │ ├── message3.xml │ └── message4.xml ├── share ├── edid.ids ├── html │ ├── favicon.ico │ ├── index.tpl │ ├── inventory.tpl │ ├── logo.png │ ├── now.tpl │ ├── site.css │ └── toolbox │ │ ├── common-language-en.txt │ │ ├── common-language-fr.txt │ │ ├── configuration-language-en.txt │ │ ├── configuration-language-fr.txt │ │ ├── configuration.css │ │ ├── configuration.tpl │ │ ├── credentials-edit.tpl │ │ ├── credentials-language-en.txt │ │ ├── credentials-language-fr.txt │ │ ├── credentials-list.tpl │ │ ├── credentials.tpl │ │ ├── errors-language-en.txt │ │ ├── errors-language-fr.txt │ │ ├── errors.tpl │ │ ├── fonts │ │ ├── tabler-icons.eot │ │ ├── tabler-icons.ttf │ │ ├── tabler-icons.woff │ │ └── tabler-icons.woff2 │ │ ├── footer.tpl │ │ ├── header.tpl │ │ ├── home.tpl │ │ ├── index.tpl │ │ ├── infos-language-en.txt │ │ ├── infos-language-fr.txt │ │ ├── infos.tpl │ │ ├── inventory-edit.tpl │ │ ├── inventory-language-en.txt │ │ ├── inventory-language-fr.txt │ │ ├── inventory-list.tpl │ │ ├── inventory.css │ │ ├── inventory.tpl │ │ ├── ip_range-edit.tpl │ │ ├── ip_range-language-en.txt │ │ ├── ip_range-language-fr.txt │ │ ├── ip_range-list.tpl │ │ ├── ip_range.tpl │ │ ├── language.tpl │ │ ├── list-navigation.tpl │ │ ├── logo.png │ │ ├── mibsupport-aliases-edit.tpl │ │ ├── mibsupport-aliases.tpl │ │ ├── mibsupport-edit.tpl │ │ ├── mibsupport-infos-en.tpl │ │ ├── mibsupport-infos-fr.tpl │ │ ├── mibsupport-infos.tpl │ │ ├── mibsupport-language-en.txt │ │ ├── mibsupport-language-fr.txt │ │ ├── mibsupport-rules-edit.tpl │ │ ├── mibsupport-rules-infos-fr.tpl │ │ ├── mibsupport-rules-infos.tpl │ │ ├── mibsupport-rules.tpl │ │ ├── mibsupport-sysobjectid-edit.tpl │ │ ├── mibsupport-sysobjectid-infos-fr.tpl │ │ ├── mibsupport-sysobjectid-infos.tpl │ │ ├── mibsupport-sysobjectid.tpl │ │ ├── mibsupport-sysorid-edit.tpl │ │ ├── mibsupport-sysorid-infos-fr.tpl │ │ ├── mibsupport-sysorid-infos.tpl │ │ ├── mibsupport-sysorid.tpl │ │ ├── mibsupport-tabs.tpl │ │ ├── mibsupport.css │ │ ├── mibsupport.tpl │ │ ├── navbar.tpl │ │ ├── remotes-edit.tpl │ │ ├── remotes-language-en.txt │ │ ├── remotes-language-fr.txt │ │ ├── remotes-list.tpl │ │ ├── remotes.tpl │ │ ├── results-edit.tpl │ │ ├── results-language-en.txt │ │ ├── results-language-fr.txt │ │ ├── results-list.tpl │ │ ├── results.css │ │ ├── results.tpl │ │ ├── scheduling-edit.tpl │ │ ├── scheduling-language-en.txt │ │ ├── scheduling-language-fr.txt │ │ ├── scheduling-list.tpl │ │ ├── scheduling.tpl │ │ ├── tabler-icons.min.css │ │ ├── toolbox.css │ │ └── yaml.tpl ├── pci.ids ├── sysobject.ids └── usb.ids ├── snap ├── hooks │ └── configure └── snapcraft.yaml ├── src └── cmd │ └── glpi-injector │ └── main.go ├── t ├── 01compile.t ├── 02critic.t ├── 03var.t ├── 04pod-syntax.t ├── 05pod-coverage.t ├── 06pod-listed-categories.t ├── 06pod-no404.t ├── 06pod-spelling.t ├── 07whitespaces.t ├── 08changelog.t ├── 09cpanmeta.t ├── agent │ ├── agent.t │ ├── config.t │ ├── daemon.t │ ├── http │ │ ├── client │ │ │ ├── connection.t │ │ │ ├── fusion │ │ │ │ └── response.t │ │ │ ├── glpi │ │ │ │ └── protocol │ │ │ │ │ ├── contact.t │ │ │ │ │ ├── inventory.t │ │ │ │ │ └── message.t │ │ │ ├── instanciation.t │ │ │ ├── ocs │ │ │ │ ├── compression.t │ │ │ │ └── response.t │ │ │ └── ssl.t │ │ ├── server.t │ │ └── server │ │ │ ├── cors-headers.t │ │ │ └── proxy.t │ ├── inventory.t │ ├── logger.t │ ├── snmp │ │ ├── live.t │ │ └── mock.t │ ├── soap.t │ ├── storage.t │ ├── target.t │ ├── task.t │ ├── tools.t │ ├── tools │ │ ├── aix.t │ │ ├── archive.t │ │ ├── bsd.t │ │ ├── generic.t │ │ ├── hardware.t │ │ ├── hpux.t │ │ ├── license.t │ │ ├── linux.t │ │ ├── macos.t │ │ ├── network.t │ │ ├── solaris.t │ │ ├── storages │ │ │ └── hp.t │ │ ├── unix.t │ │ ├── usb.t │ │ └── win32.t │ ├── xml.t │ └── xml │ │ ├── netinventory.t │ │ ├── query │ │ ├── inventory.t │ │ ├── prolog.t │ │ └── simpleMessage.t │ │ └── response.t ├── apps │ ├── agent.t │ ├── esx.t │ ├── injector.t │ ├── inventory.t │ ├── netdiscovery.t │ ├── netinventory.t │ └── wakeonlan.t ├── installer │ └── linux-perl-installer.t ├── lib │ ├── GLPI │ │ ├── Agent │ │ │ └── Logger │ │ │ │ ├── Fatal.pm │ │ │ │ └── Test.pm │ │ └── Test │ │ │ ├── Agent.pm │ │ │ ├── Auth.pm │ │ │ ├── Inventory.pm │ │ │ ├── Module.pm │ │ │ ├── Proxy.pm │ │ │ ├── Server.pm │ │ │ └── Utils.pm │ └── fake │ │ ├── unix │ │ └── Sys │ │ │ └── Syslog.pm │ │ └── windows │ │ ├── Win32.pm │ │ ├── Win32 │ │ ├── API.pm │ │ ├── Daemon.pm │ │ ├── Job.pm │ │ ├── OLE.pm │ │ └── TieRegistry.pm │ │ └── Win32API │ │ └── Registry.pm ├── perlcriticrc └── tasks │ ├── collect.t │ ├── collect │ └── findfile.t │ ├── deploy │ ├── actionprocessor.t │ ├── checkprocessor.t │ ├── diskfree.t │ ├── file.t │ ├── p2p.t │ └── validate.t │ ├── esx.t │ ├── inventory │ ├── aix │ │ ├── bios.t │ │ ├── controllers.t │ │ ├── drives.t │ │ ├── lvm.t │ │ ├── memory.t │ │ ├── modems.t │ │ ├── networks.t │ │ ├── slots.t │ │ ├── softwares.t │ │ ├── sounds.t │ │ ├── storages.t │ │ └── videos.t │ ├── bsd │ │ ├── softwares.t │ │ └── storages.t │ ├── generic │ │ ├── batteries │ │ │ ├── acpiconf.t │ │ │ └── upower.t │ │ ├── databases │ │ │ ├── db2.t │ │ │ ├── mongodb.t │ │ │ ├── mssql.t │ │ │ ├── mysql.t │ │ │ ├── oracle.t │ │ │ └── postgresql.t │ │ ├── dmidecode │ │ │ ├── battery.t │ │ │ ├── bios.t │ │ │ ├── hardware.t │ │ │ ├── memory.t │ │ │ ├── ports.t │ │ │ ├── psu.t │ │ │ └── slots.t │ │ ├── drives │ │ │ └── asm.t │ │ ├── firewall.t │ │ ├── ipmi │ │ │ ├── fru.t │ │ │ ├── fru_controllers.t │ │ │ └── fru_memories.t │ │ ├── networks │ │ │ └── ilo.t │ │ ├── pci │ │ │ ├── controllers.t │ │ │ ├── modems.t │ │ │ ├── sounds.t │ │ │ ├── videos.t │ │ │ └── videos │ │ │ │ └── nvidia.t │ │ ├── remote_mgmt │ │ │ ├── rms.t │ │ │ └── teamviewer.t │ │ ├── screen.t │ │ ├── storages │ │ │ ├── 3ware.t │ │ │ └── hp_w_smartctl.t │ │ └── usb.t │ ├── hpux │ │ ├── controllers.t │ │ ├── cpu.t │ │ ├── drives.t │ │ ├── memory.t │ │ ├── mp.t │ │ ├── networks.t │ │ ├── slots.t │ │ ├── softwares.t │ │ ├── storages.t │ │ └── uptime.t │ ├── linux │ │ ├── antivirus │ │ │ ├── bitdefender.t │ │ │ ├── cortex.t │ │ │ ├── defender.t │ │ │ └── sentinelone.t │ │ ├── arm │ │ │ └── board.t │ │ ├── cpu.t │ │ ├── distro.t │ │ ├── drives.t │ │ ├── lvm.t │ │ ├── multipath.t │ │ ├── networks.t │ │ ├── networks │ │ │ ├── dockermacvlan.t │ │ │ └── fibrechannel.t │ │ ├── os.t │ │ ├── rhn-systemid.t │ │ ├── softwares.t │ │ ├── storages.t │ │ ├── storages │ │ │ ├── adaptec.t │ │ │ ├── lsilogic.t │ │ │ ├── megacli.t │ │ │ ├── megacli_w_smartctl.t │ │ │ └── megaraid.t │ │ └── video.t │ ├── macos │ │ ├── antivirus.t │ │ ├── batteries.t │ │ ├── cpu.t │ │ ├── firewall.t │ │ ├── hostname.t │ │ ├── memory.t │ │ ├── networks.t │ │ ├── os.t │ │ ├── psu.t │ │ ├── softwares.t │ │ ├── storages.t │ │ ├── uptime.t │ │ ├── usb.t │ │ └── videos.t │ ├── solaris │ │ ├── bios.t │ │ ├── cpu.t │ │ ├── drives.t │ │ ├── hardware.t │ │ ├── memory.t │ │ ├── networks.t │ │ ├── os.t │ │ ├── slots.t │ │ ├── softwares.t │ │ └── storages.t │ ├── virtualization │ │ ├── docker.t │ │ ├── hyperv.t │ │ ├── jails.t │ │ ├── libvirt.t │ │ ├── lxc.t │ │ ├── parallels.t │ │ ├── qemu.t │ │ ├── virtualbox.t │ │ ├── virtuozzo.t │ │ ├── xen.t │ │ └── xencitrixserver.t │ └── windows │ │ ├── batteries.t │ │ ├── bios.t │ │ ├── cpu.t │ │ ├── drives.t │ │ ├── firewall.t │ │ ├── license.t │ │ ├── memory.t │ │ ├── networks.t │ │ ├── printers.t │ │ ├── registry.t │ │ ├── softwares.t │ │ ├── storages.t │ │ ├── usb.t │ │ ├── users.t │ │ └── video.t │ ├── netdiscovery.t │ ├── netinventory.t │ ├── netinventory │ └── mibsupport │ │ └── force10s.t │ ├── remoteinventory.t │ └── wakeonlan.t └── tools ├── Changelog.pm ├── github-nightly-description.sh ├── github-release-description.sh ├── json-inventory-validator.pl ├── kwalitee.pl ├── make-release.sh ├── msi-signing.pl ├── netsim.sh ├── updatePciids.pl ├── updateSysobjectids.pl ├── updateUsbids.pl └── virustotal-report-analysis.pl /.github/DISCUSSION_TEMPLATE/announcements.yml: -------------------------------------------------------------------------------- 1 | body: 2 | - type: textarea 3 | id: description 4 | attributes: 5 | label: Announcement 6 | placeholder: Make an announcement 7 | validations: 8 | required: true 9 | -------------------------------------------------------------------------------- /contrib/macosx/.gitignore: -------------------------------------------------------------------------------- 1 | # .DS_Store files! 2 | .DS_Store 3 | 4 | # our build directory 5 | build/ 6 | 7 | pkg/ 8 | 9 | munkipkg 10 | munkipkg.orig 11 | build-info.plist 12 | product-requirements.plist 13 | Distribution.xml 14 | *.tar 15 | -------------------------------------------------------------------------------- /contrib/macosx/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/contrib/macosx/Resources/background.png -------------------------------------------------------------------------------- /contrib/macosx/scripts/cacert.pem: -------------------------------------------------------------------------------- 1 | Make sure you replace me with your real cacert.pem 2 | -------------------------------------------------------------------------------- /contrib/macosx/scripts/dmidecode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/contrib/macosx/scripts/dmidecode -------------------------------------------------------------------------------- /contrib/unix/installer/InstallerVersion.pm: -------------------------------------------------------------------------------- 1 | package 2 | InstallerVersion; 3 | 4 | # Support glpi-agent-linux-installer.pl run from sources for testing 5 | use lib qw(./lib ../../lib); 6 | 7 | use GLPI::Agent::Version; 8 | use constant DISTRO => "linux"; 9 | 10 | sub VERSION { 11 | return $GLPI::Agent::Version::VERSION; 12 | } 13 | 14 | 1; 15 | -------------------------------------------------------------------------------- /contrib/windows/packaging/GLPI-Agent_Banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/contrib/windows/packaging/GLPI-Agent_Banner.bmp -------------------------------------------------------------------------------- /contrib/windows/packaging/GLPI-Agent_Dialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/contrib/windows/packaging/GLPI-Agent_Dialog.bmp -------------------------------------------------------------------------------- /contrib/windows/packaging/Version.pm.tt: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Version; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | our $VERSION = "[% version %]"; 7 | our $PROVIDER = "[% provider %]"; 8 | our $COMMENTS = [[% FOREACH comment IN comments %] 9 | "[% comment %]",[% END %] 10 | ]; 11 | 12 | 1; 13 | -------------------------------------------------------------------------------- /contrib/windows/packaging/agentexe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/contrib/windows/packaging/agentexe.ico -------------------------------------------------------------------------------- /contrib/windows/packaging/glpi-agent.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/contrib/windows/packaging/glpi-agent.ico -------------------------------------------------------------------------------- /contrib/windows/packaging/tools/ca/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.dll 3 | *.bat 4 | *.manifest 5 | -------------------------------------------------------------------------------- /contrib/windows/packaging/tools/ca/dll/ca.def: -------------------------------------------------------------------------------- 1 | 2 | LIBRARY "ca" 3 | 4 | EXPORTS 5 | ; customaction.cpp 6 | CheckElevatedCustomAction 7 | -------------------------------------------------------------------------------- /contrib/windows/packaging/tools/x64/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/contrib/windows/packaging/tools/x64/7z.dll -------------------------------------------------------------------------------- /contrib/windows/packaging/tools/x64/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/contrib/windows/packaging/tools/x64/7z.exe -------------------------------------------------------------------------------- /contrib/windows/packaging/tools/x86/hdparm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/contrib/windows/packaging/tools/x86/hdparm.exe -------------------------------------------------------------------------------- /debian/NEWS: -------------------------------------------------------------------------------- 1 | glpi-agent (1:1.0-1) unstable; urgency=medium 2 | 3 | GLPI agent should be used in placed of FusionInventory agent when still installed. 4 | 5 | -- Guillaume Bougard Wed, 24 Feb 2021 16:30:48 +0100 6 | -------------------------------------------------------------------------------- /debian/glpi-agent-task-esx.manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/usr/share/man/man1/glpi-esx.1p 2 | -------------------------------------------------------------------------------- /debian/glpi-agent-task-network.manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/usr/share/man/man1/glpi-netinventory.1p 2 | debian/tmp/usr/share/man/man1/glpi-netdiscovery.1p 3 | -------------------------------------------------------------------------------- /debian/glpi-agent.README.Debian: -------------------------------------------------------------------------------- 1 | 2 | Debian packaging only supports systemd service installation, and follows README.packaging 3 | recommendations. 4 | -------------------------------------------------------------------------------- /debian/glpi-agent.dirs: -------------------------------------------------------------------------------- 1 | var/lib/glpi-agent 2 | etc/glpi-agent 3 | etc/glpi-agent/conf.d 4 | -------------------------------------------------------------------------------- /debian/glpi-agent.docs: -------------------------------------------------------------------------------- 1 | README.md 2 | THANKS 3 | -------------------------------------------------------------------------------- /debian/glpi-agent.manpages: -------------------------------------------------------------------------------- 1 | debian/tmp/usr/share/man/man1/glpi-inventory.1p 2 | debian/tmp/usr/share/man/man1/glpi-injector.1p 3 | debian/tmp/usr/share/man/man1/glpi-wakeonlan.1p 4 | debian/tmp/usr/share/man/man1/glpi-agent.1p 5 | debian/tmp/usr/share/man/man1/glpi-remote.1p 6 | -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | simpler-setup-module.patch 2 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/tests/pkg-perl/SKIP: -------------------------------------------------------------------------------- 1 | # Skip as GLPI::Agent is not installed system-wide 2 | use.t 3 | -------------------------------------------------------------------------------- /debian/tests/pkg-perl/smoke-env: -------------------------------------------------------------------------------- 1 | # GLPI::Agent is not installed system-wide, PERL5LIB should be set 2 | PERL5LIB=/usr/share/glpi-agent/lib 3 | -------------------------------------------------------------------------------- /debian/tests/pkg-perl/smoke-files: -------------------------------------------------------------------------------- 1 | t/ 2 | # GLPI::Agent unittests need resources/ folder 3 | resources/ 4 | -------------------------------------------------------------------------------- /debian/tests/pkg-perl/smoke-tests: -------------------------------------------------------------------------------- 1 | t/agent/tools/linux.t 2 | t/tasks/inventory/linux/*.t 3 | t/tasks/inventory/linux/*/*.t 4 | -------------------------------------------------------------------------------- /debian/upstream/metadata: -------------------------------------------------------------------------------- 1 | --- 2 | Archive: github 3 | Bug-Database: https://github.com/glpi-project/glpi-agent/issues 4 | Repository: https://github.com/glpi-project/glpi-agent.git 5 | Bug-Submit: https://github.com/glpi-project/glpi-agent/issues/new 6 | Repository-Browse: https://github.com/glpi-project/glpi-agent 7 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- 1 | version=4 2 | pts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/-$1\.tar\.gz/ \ 3 | https://github.com/glpi-project/glpi-agent/tags .*/v?(\d\S+)\.tar\.gz 4 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/glpi-project/glpi-agent 2 | 3 | go 1.20 4 | 5 | require ( 6 | github.com/jessevdk/go-flags v1.5.0 // indirect 7 | golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 // indirect 8 | ) 9 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/SOAP/WsMan/Arguments.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::SOAP::WsMan::Arguments; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use GLPI::Agent::SOAP::WsMan::Node; 7 | 8 | ## no critic (ProhibitMultiplePackages) 9 | package 10 | Arguments; 11 | 12 | use parent 13 | 'Node'; 14 | 15 | use constant xmlns => 'rsp'; 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/SOAP/WsMan/Command.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::SOAP::WsMan::Command; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use GLPI::Agent::SOAP::WsMan::Node; 7 | 8 | ## no critic (ProhibitMultiplePackages) 9 | package 10 | Command; 11 | 12 | use parent 13 | 'Node'; 14 | 15 | use constant xmlns => 'rsp'; 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/SOAP/WsMan/CommandId.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::SOAP::WsMan::CommandId; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use GLPI::Agent::SOAP::WsMan::Node; 7 | 8 | ## no critic (ProhibitMultiplePackages) 9 | package 10 | CommandId; 11 | 12 | use parent 13 | 'Node'; 14 | 15 | use constant xmlns => 'rsp'; 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/SOAP/WsMan/CommandLine.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::SOAP::WsMan::CommandLine; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use GLPI::Agent::SOAP::WsMan::Node; 7 | 8 | ## no critic (ProhibitMultiplePackages) 9 | package 10 | CommandLine; 11 | 12 | use parent 13 | 'Node'; 14 | 15 | use constant xmlns => 'rsp'; 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/SOAP/WsMan/EndOfSequence.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::SOAP::WsMan::EndOfSequence; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use GLPI::Agent::SOAP::WsMan::Node; 7 | 8 | ## no critic (ProhibitMultiplePackages) 9 | package 10 | EndOfSequence; 11 | 12 | use parent 13 | 'Node'; 14 | 15 | use constant xmlns => 'w'; 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/SOAP/WsMan/ExitCode.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::SOAP::WsMan::ExitCode; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use GLPI::Agent::SOAP::WsMan::Node; 7 | 8 | ## no critic (ProhibitMultiplePackages) 9 | package 10 | ExitCode; 11 | 12 | use parent 13 | 'Node'; 14 | 15 | use constant xmlns => 'rsp'; 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/SOAP/WsMan/Items.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::SOAP::WsMan::Items; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use GLPI::Agent::SOAP::WsMan::Node; 7 | 8 | ## no critic (ProhibitMultiplePackages) 9 | package 10 | Items; 11 | 12 | use parent 13 | 'Node'; 14 | 15 | use constant xmlns => 'w'; 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/SOAP/WsMan/RelatesTo.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::SOAP::WsMan::RelatesTo; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use GLPI::Agent::SOAP::WsMan::Node; 7 | 8 | ## no critic (ProhibitMultiplePackages) 9 | package 10 | RelatesTo; 11 | 12 | use parent 13 | 'Node'; 14 | 15 | use constant xmlns => 'a'; 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/SOAP/WsMan/Signal.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::SOAP::WsMan::Signal; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use GLPI::Agent::SOAP::WsMan::Node; 7 | 8 | ## no critic (ProhibitMultiplePackages) 9 | package 10 | Signal; 11 | 12 | use parent 13 | 'Node'; 14 | 15 | use constant xmlns => 'rsp'; 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/SOAP/WsMan/Text.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::SOAP::WsMan::Text; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use GLPI::Agent::SOAP::WsMan::Node; 7 | 8 | ## no critic (ProhibitMultiplePackages) 9 | package 10 | Text; 11 | 12 | use parent 13 | 'Node'; 14 | 15 | use constant xmlns => 's'; 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/SOAP/WsMan/Value.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::SOAP::WsMan::Value; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use GLPI::Agent::SOAP::WsMan::Node; 7 | 8 | ## no critic (ProhibitMultiplePackages) 9 | package 10 | Value; 11 | 12 | use parent 13 | 'Node'; 14 | 15 | use constant xmlns => 's'; 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Collect/Version.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Collect::Version; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use constant VERSION => "2.11"; 7 | 8 | 1; 9 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Deploy/Version.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Deploy::Version; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use constant VERSION => "3.5"; 7 | 8 | 1; 9 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/ESX/Version.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::ESX::Version; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use constant VERSION => "2.13"; 7 | 8 | 1; 9 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Generic.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Generic; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | sub isEnabled { 9 | return 1; 10 | } 11 | 12 | sub doInventory {} 13 | 14 | 1; 15 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Generic/Batteries.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Generic::Batteries; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use constant category => "battery"; 9 | 10 | sub isEnabled { 11 | return 1; 12 | } 13 | 14 | sub doInventory {} 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Generic/Drives.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Generic::Drives; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use constant category => "drive"; 9 | 10 | sub isEnabled { 11 | return 1; 12 | } 13 | 14 | sub doInventory {} 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Generic/Firewall.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Generic::Firewall; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use constant category => "firewall"; 9 | 10 | sub isEnabled { 11 | return 1; 12 | } 13 | 14 | sub doInventory {} 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Generic/Ipmi.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Generic::Ipmi; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use GLPI::Agent::Tools; 9 | 10 | sub isEnabled { 11 | return unless canRun('ipmitool'); 12 | } 13 | 14 | sub doInventory {} 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Generic/Ipmi/Fru.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Generic::Ipmi::Fru; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use GLPI::Agent::Tools; 9 | 10 | sub isEnabled { 11 | return canRun('ipmitool'); 12 | } 13 | 14 | sub doInventory {} 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Generic/Networks.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Generic::Networks; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use constant category => "network"; 9 | 10 | sub isEnabled { 11 | return 1; 12 | } 13 | 14 | sub doInventory {} 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Generic/PCI.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Generic::PCI; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use GLPI::Agent::Tools; 9 | 10 | sub isEnabled { 11 | return canRun('lspci'); 12 | } 13 | 14 | sub doInventory {} 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Generic/Remote_Mgmt.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Generic::Remote_Mgmt; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use constant category => "remote_mgmt"; 9 | 10 | sub isEnabled { 11 | return 1; 12 | } 13 | 14 | sub doInventory { 15 | } 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Generic/Softwares.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Generic::Softwares; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use constant category => "software"; 9 | 10 | sub isEnabled { 11 | return 1; 12 | } 13 | 14 | sub doInventory {} 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Generic/Storages.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Generic::Storages; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use constant category => "storage"; 9 | 10 | sub isEnabled { 11 | return 1; 12 | } 13 | 14 | sub doInventory {} 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Linux/AntiVirus.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Linux::AntiVirus; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use constant category => "antivirus"; 9 | 10 | sub isEnabled { 11 | return 1; 12 | } 13 | 14 | sub doInventory { 15 | } 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Linux/Distro.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Linux::Distro; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use constant category => "os"; 9 | 10 | sub isEnabled { 11 | return 1; 12 | } 13 | 14 | sub doInventory {} 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/MacOS/AntiVirus.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::MacOS::AntiVirus; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use constant category => "antivirus"; 9 | 10 | sub isEnabled { 11 | return 1; 12 | } 13 | 14 | sub doInventory { 15 | } 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Version.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Version; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use constant VERSION => "1.21"; 7 | 8 | 1; 9 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/Inventory/Virtualization.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::Inventory::Virtualization; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Task::Inventory::Module'; 7 | 8 | use constant category => "virtualmachine"; 9 | 10 | sub isEnabled { 11 | return 1; 12 | } 13 | 14 | sub doInventory { 15 | } 16 | 17 | 1; 18 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/NetDiscovery/Version.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::NetDiscovery::Version; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use constant VERSION => "6.7"; 7 | 8 | 1; 9 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/NetInventory/Version.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::NetInventory::Version; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use constant VERSION => "6.7"; 7 | 8 | 1; 9 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/RemoteInventory/Version.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::RemoteInventory::Version; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use constant VERSION => "1.7"; 7 | 8 | 1; 9 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Task/WakeOnLan/Version.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Task::WakeOnLan::Version; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use constant VERSION => "2.2"; 7 | 8 | 1; 9 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Tools/Constants.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Tools::Constants; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'Exporter'; 7 | 8 | use constant STATUS_ON => 'on'; 9 | use constant STATUS_OFF => 'off'; 10 | 11 | our @EXPORT = qw( 12 | STATUS_OFF 13 | STATUS_ON 14 | ); 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /lib/GLPI/Agent/Tools/Screen/Neovo.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Agent::Tools::Screen::Neovo; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use parent 'GLPI::Agent::Tools::Screen'; 7 | 8 | sub manufacturer { 9 | return "AG Neovo"; 10 | } 11 | 12 | 1; 13 | -------------------------------------------------------------------------------- /resources/aix/lparstat/README: -------------------------------------------------------------------------------- 1 | lpartstat -i output sample 2 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-4.3.1-hdisk0: -------------------------------------------------------------------------------- 1 | #size_in_mb 2 | 9100 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-4.3.1-hdisk1: -------------------------------------------------------------------------------- 1 | #size_in_mb 2 | 4500 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-4.3.1-mem0: -------------------------------------------------------------------------------- 1 | #size:goodsize 2 | 768:768 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-4.3.2-hdisk0: -------------------------------------------------------------------------------- 1 | #size_in_mb 2 | 9100 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-4.3.2-hdisk1: -------------------------------------------------------------------------------- 1 | #size_in_mb 2 | 4500 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-4.3.2-mem0: -------------------------------------------------------------------------------- 1 | #size:goodsize 2 | 768:768 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3a-hdisk0: -------------------------------------------------------------------------------- 1 | #size_in_mb 2 | 73400 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3a-hdisk1: -------------------------------------------------------------------------------- 1 | #size_in_mb 2 | 73400 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3a-mem0: -------------------------------------------------------------------------------- 1 | #goodsize:size 2 | 1824:1824 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3a-proc0: -------------------------------------------------------------------------------- 1 | #type:frequency:smt_threads 2 | PowerPC_POWER5:1498500000:2 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3b-hdisk0: -------------------------------------------------------------------------------- 1 | #size_in_mb 2 | 73400 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3b-hdisk1: -------------------------------------------------------------------------------- 1 | #size_in_mb 2 | 73400 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3b-mem0: -------------------------------------------------------------------------------- 1 | #goodsize:size 2 | 3968:3968 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3b-proc0: -------------------------------------------------------------------------------- 1 | #state:type:smt_threads:frequency 2 | enable:PowerPC_POWER:1:2597400000 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3b-proc1: -------------------------------------------------------------------------------- 1 | #state:type:smt_threads:frequency 2 | enable:PowerPC_POWER:1:2597400000 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3c-mem0: -------------------------------------------------------------------------------- 1 | #goodsize:size 2 | 10240:10240 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3c-proc0: -------------------------------------------------------------------------------- 1 | #state:type:smt_threads:frequency 2 | enable:PowerPC_POWER6:2:4204000000 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3c-proc2: -------------------------------------------------------------------------------- 1 | #state:type:smt_threads:frequency 2 | enable:PowerPC_POWER6:2:4204000000 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3c-proc4: -------------------------------------------------------------------------------- 1 | #state:type:smt_threads:frequency 2 | enable:PowerPC_POWER6:2:4204000000 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-5.3c-proc6: -------------------------------------------------------------------------------- 1 | #state:type:smt_threads:frequency 2 | enable:PowerPC_POWER6:2:4204000000 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-6.1a-mem0: -------------------------------------------------------------------------------- 1 | #ent_mem_cap:goodsize:mem_exp_factor:size:var_mem_weight 2 | :24576::24576: 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-6.1a-proc0: -------------------------------------------------------------------------------- 1 | #type:frequency:smt_threads 2 | PowerPC_POWER7:3300000000:4 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-6.1a-proc4: -------------------------------------------------------------------------------- 1 | #type:frequency:smt_threads 2 | PowerPC_POWER7:3300000000:4 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-6.1b-hdisk0: -------------------------------------------------------------------------------- 1 | #size_in_mb 2 | 69797 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-6.1b-hdisk1: -------------------------------------------------------------------------------- 1 | #size_in_mb 2 | 0 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-6.1b-mem0: -------------------------------------------------------------------------------- 1 | #ent_mem_cap:goodsize:mem_exp_factor:size:var_mem_weight 2 | :3712::3712: 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-6.1b-proc0: -------------------------------------------------------------------------------- 1 | #state:type:smt_threads:frequency 2 | enable:PowerPC_POWER6:2:3826000000 3 | -------------------------------------------------------------------------------- /resources/aix/lsattr/aix-6.1b-proc2: -------------------------------------------------------------------------------- 1 | #state:type:smt_threads:frequency 2 | enable:PowerPC_POWER6:2:3826000000 3 | -------------------------------------------------------------------------------- /resources/aix/lscfg/aix-4.3.1-en: -------------------------------------------------------------------------------- 1 | DEVICE LOCATION DESCRIPTION 2 | 3 | ent0 10-80 IBM PCI Ethernet Adapter (22100020) 4 | 5 | Network Address.............08005ABAE967 6 | Displayable Message.........PCI Ethernet Adapter (22100020) 7 | -------------------------------------------------------------------------------- /resources/aix/lscfg/aix-5.3c-hdisk0: -------------------------------------------------------------------------------- 1 | hdisk0 U7778.23X.106BDCA-V6-C2-T1-L810000000000 2 | Virtual SCSI Disk Drive 3 | 4 | PLATFORM SPECIFIC 5 | 6 | Name: disk 7 | Node: disk 8 | Device Type: block 9 | -------------------------------------------------------------------------------- /resources/aix/lscfg/aix-5.3c-hdisk1: -------------------------------------------------------------------------------- 1 | hdisk1 U7778.23X.106BDCA-V6-C2-T1-L820000000000 2 | Virtual SCSI Disk Drive 3 | 4 | PLATFORM SPECIFIC 5 | 6 | Name: disk 7 | Node: disk 8 | Device Type: block 9 | -------------------------------------------------------------------------------- /resources/aix/lscfg/aix-6.1b-hdisk0: -------------------------------------------------------------------------------- 1 | hdisk0 U78A5.001.WIH55B2-P1-T5-LFF0000-L0 2 | SAS RAID 10 Disk Array 3 | 4 | PLATFORM SPECIFIC 5 | 6 | Name: disk 7 | Node: disk 8 | Device Type: block 9 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.1-bus: -------------------------------------------------------------------------------- 1 | pci0:PCI Bus 2 | pci1:PCI Bus 3 | pci2:PCI Bus 4 | isa0:ISA Bus 5 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.1-cdrom: -------------------------------------------------------------------------------- 1 | cd0:SCSI Multimedia CD-ROM Drive:Available 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.1-disk-scsi: -------------------------------------------------------------------------------- 1 | hdisk0:16 Bit SCSI Disk Drive 2 | hdisk1:16 Bit SCSI Disk Drive 3 | hdisk2:16 Bit SCSI Disk Drive 4 | hdisk3:16 Bit SCSI Disk Drive 5 | hdisk4:Other SCSI Disk Drive 6 | hdisk5:Other SCSI Disk Drive 7 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.1-diskette: -------------------------------------------------------------------------------- 1 | fd0:Diskette Drive:Available 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.1-memory: -------------------------------------------------------------------------------- 1 | mem0 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.1-processor: -------------------------------------------------------------------------------- 1 | proc0 2 | proc1 3 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.1-tape: -------------------------------------------------------------------------------- 1 | rmt0:4.0 GB 4mm Tape Drive:Available 2 | rmt1:SCSI 4mm Tape Drive:Available 3 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.2-bus: -------------------------------------------------------------------------------- 1 | pci0:PCI Bus 2 | pci1:PCI Bus 3 | pci2:PCI Bus 4 | isa0:ISA Bus 5 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.2-cdrom: -------------------------------------------------------------------------------- 1 | cd0:SCSI Multimedia CD-ROM Drive:Available 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.2-disk-scsi: -------------------------------------------------------------------------------- 1 | hdisk0:16 Bit SCSI Disk Drive 2 | hdisk1:16 Bit SCSI Disk Drive 3 | hdisk2:16 Bit SCSI Disk Drive 4 | hdisk3:16 Bit SCSI Disk Drive 5 | hdisk4:Other SCSI Disk Drive 6 | hdisk5:Other SCSI Disk Drive 7 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.2-diskette: -------------------------------------------------------------------------------- 1 | fd0:Diskette Drive:Available 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.2-memory: -------------------------------------------------------------------------------- 1 | mem0 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.2-processor: -------------------------------------------------------------------------------- 1 | proc0 2 | proc1 3 | proc2 4 | proc3 5 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-4.3.2-tape: -------------------------------------------------------------------------------- 1 | rmt0:SCSI 4mm Tape Drive:Available 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3a-bus: -------------------------------------------------------------------------------- 1 | pci0:PCI Bus 2 | pci1:PCI Bus 3 | pci2:PCI Bus 4 | pci3:PCI Bus 5 | pci4:PCI Bus 6 | pci5:PCI Bus 7 | pci6:PCI Bus 8 | pci7:PCI Bus 9 | pci8:PCI Bus 10 | pci9:PCI Bus 11 | pci10:PCI Bus 12 | pci11:PCI Bus 13 | pci12:PCI Bus 14 | vio0:Virtual I/O Bus 15 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3a-disk-scsi: -------------------------------------------------------------------------------- 1 | hdisk0:16 Bit LVD SCSI Disk Drive 2 | hdisk1:16 Bit LVD SCSI Disk Drive 3 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3a-memory: -------------------------------------------------------------------------------- 1 | mem0 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3a-processor: -------------------------------------------------------------------------------- 1 | proc0 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3a-tape: -------------------------------------------------------------------------------- 1 | rmt0:LVD SCSI 4mm Tape Drive:Available 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3b-bus: -------------------------------------------------------------------------------- 1 | pci0:PCI Bus 2 | pci1:PCI Bus 3 | pci2:PCI Bus 4 | pci3:PCI Bus 5 | vio0:Virtual I/O Bus 6 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3b-disk-scsi: -------------------------------------------------------------------------------- 1 | hdisk0:SCSI Disk Drive 2 | hdisk1:SCSI Disk Drive 3 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3b-diskette: -------------------------------------------------------------------------------- 1 | fd0:USB Diskette Drive:Defined 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3b-memory: -------------------------------------------------------------------------------- 1 | mem0 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3b-processor: -------------------------------------------------------------------------------- 1 | proc0 2 | proc1 3 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3c-adapter: -------------------------------------------------------------------------------- 1 | ent0:ethernet:Logical Host Ethernet Port (lp-hea) 2 | ent1:ethernet:Logical Host Ethernet Port (lp-hea) 3 | ent2:IBM,l-lan:Virtual I/O Ethernet Adapter (l-lan) 4 | lhea0:IBM,lhea:Logical Host Ethernet Adapter (l-hea) 5 | vsa0:hvterm1:LPAR Virtual Serial Adapter 6 | vscsi0:IBM,v-scsi:Virtual SCSI Client Adapter 7 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3c-bus: -------------------------------------------------------------------------------- 1 | vio0:Virtual I/O Bus 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3c-disk-vscsi: -------------------------------------------------------------------------------- 1 | hdisk0:Virtual SCSI Disk Drive 2 | hdisk1:Virtual SCSI Disk Drive 3 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3c-memory: -------------------------------------------------------------------------------- 1 | mem0 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-5.3c-processor: -------------------------------------------------------------------------------- 1 | proc0 2 | proc2 3 | proc4 4 | proc6 5 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-6.1a-bus: -------------------------------------------------------------------------------- 1 | pci0:PCI Express Bus 2 | pci1:PCI Express Bus 3 | pci2:PCI Express Bus 4 | vio0:Virtual I/O Bus 5 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-6.1a-disk-vscsi: -------------------------------------------------------------------------------- 1 | hdisk0:Virtual SCSI Disk Drive 2 | hdisk1:Virtual SCSI Disk Drive 3 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-6.1a-memory: -------------------------------------------------------------------------------- 1 | mem0 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-6.1a-processor: -------------------------------------------------------------------------------- 1 | proc0 2 | proc4 3 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-6.1b-bus: -------------------------------------------------------------------------------- 1 | pci0:PCI Bus 2 | pci1:PCI Bus 3 | pci2:PCI Bus 4 | pci3:PCI Bus 5 | pci4:PCI Express Bus 6 | pci5:PCI Express Bus 7 | pci6:PCI Bus 8 | vio0:Virtual I/O Bus 9 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-6.1b-disk-sas: -------------------------------------------------------------------------------- 1 | hdisk0:SAS RAID 10 Disk Array 2 | hdisk1:MPIO DS3200 SAS Disk 3 | hdisk2:MPIO DS3200 SAS Disk 4 | hdisk4:MPIO DS3200 SAS Disk 5 | hdisk5:MPIO DS3200 SAS Disk 6 | hdisk6:MPIO DS3200 SAS Disk 7 | hdisk7:MPIO DS3200 SAS Disk 8 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-6.1b-memory: -------------------------------------------------------------------------------- 1 | mem0 2 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-6.1b-pdisk: -------------------------------------------------------------------------------- 1 | pdisk0:Physical SAS Disk Drive 2 | pdisk1:Physical SAS Disk Drive 3 | -------------------------------------------------------------------------------- /resources/aix/lsdev/aix-6.1b-processor: -------------------------------------------------------------------------------- 1 | proc0 2 | proc2 3 | -------------------------------------------------------------------------------- /resources/aix/lsfs/aix-4.3.1: -------------------------------------------------------------------------------- 1 | #MountPoint:Device:Vfs:Nodename:Type:Size:Options:AutoMount:Acct 2 | /:/dev/hd4:jfs::bootfs:49152:rw:yes:no 3 | /tmp:/dev/hd3:jfs:::131072:rw:yes:no 4 | /usr:/dev/hd2:jfs::bootfs:311296:rw:yes:no 5 | -------------------------------------------------------------------------------- /resources/aix/lsfs/aix-5.3: -------------------------------------------------------------------------------- 1 | #MountPoint:Device:Vfs:Nodename:Type:Size:Options:AutoMount:Acct 2 | /:/dev/hd4:jfs2::bootfs:262144:rw:yes:no 3 | /tmp:/dev/hd3:jfs2:::262144:rw:yes:no 4 | /usr:/dev/hd2:jfs2::bootfs:4456448:rw:yes:no 5 | -------------------------------------------------------------------------------- /resources/aix/lsps/aix-4.3.1: -------------------------------------------------------------------------------- 1 | Total Paging Space Percent Used 2 | 1536MB 36% 3 | -------------------------------------------------------------------------------- /resources/aix/lsps/aix-4.3.2: -------------------------------------------------------------------------------- 1 | Total Paging Space Percent Used 2 | 1536MB 1% 3 | -------------------------------------------------------------------------------- /resources/aix/lsps/aix-5.3a: -------------------------------------------------------------------------------- 1 | Total Paging Space Percent Used 2 | 1024MB 3 | -------------------------------------------------------------------------------- /resources/aix/lsps/aix-5.3b: -------------------------------------------------------------------------------- 1 | Total Paging Space Percent Used 2 | 512MB 1% 3 | -------------------------------------------------------------------------------- /resources/aix/lsps/aix-5.3c: -------------------------------------------------------------------------------- 1 | Total Paging Space Percent Used 2 | 9216MB 1% 3 | -------------------------------------------------------------------------------- /resources/aix/lsps/aix-6.1a: -------------------------------------------------------------------------------- 1 | Total Paging Space Percent Used 2 | 512MB 26% 3 | -------------------------------------------------------------------------------- /resources/aix/lsps/aix-6.1b: -------------------------------------------------------------------------------- 1 | Total Paging Space Percent Used 2 | 2048MB 1% 3 | -------------------------------------------------------------------------------- /resources/aix/lsvg/aix-6.1-l_altinst_rootvg: -------------------------------------------------------------------------------- 1 | 0516-010 : Volume group must be varied on; use varyonvg command. 2 | -------------------------------------------------------------------------------- /resources/archive/config.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/archive/config.tar.bz2 -------------------------------------------------------------------------------- /resources/archive/config.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/archive/config.tar.gz -------------------------------------------------------------------------------- /resources/archive/config.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/archive/config.tar.xz -------------------------------------------------------------------------------- /resources/archive/config.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/archive/config.zip -------------------------------------------------------------------------------- /resources/config/conf.d/00-include0.cfg: -------------------------------------------------------------------------------- 1 | tag=00000000 2 | timeout=10 -------------------------------------------------------------------------------- /resources/config/conf.d/10-include2.cfg: -------------------------------------------------------------------------------- 1 | tag=include2 2 | timeout=12 -------------------------------------------------------------------------------- /resources/config/conf.d/empty-logfile: -------------------------------------------------------------------------------- 1 | logfile= 2 | -------------------------------------------------------------------------------- /resources/config/conf.d/looping-cfg.txt: -------------------------------------------------------------------------------- 1 | 2 | tag=txt-include 3 | 4 | include "../conf.d/looping-cfg.txt" 5 | 6 | timeout = 700 7 | 8 | include "../conf.d" 9 | include = ../loop.d -------------------------------------------------------------------------------- /resources/config/conf.d/no-include.txt: -------------------------------------------------------------------------------- 1 | 2 | tag=txt-include 3 | 4 | timeout=99 -------------------------------------------------------------------------------- /resources/config/conf.d/timeout: -------------------------------------------------------------------------------- 1 | timeout=16 -------------------------------------------------------------------------------- /resources/config/daemon1: -------------------------------------------------------------------------------- 1 | no-task=snmpquery,wakeonlan 2 | server=http://myserver.mywebextension/inventory/ 3 | no-httpd=1 -------------------------------------------------------------------------------- /resources/config/include1: -------------------------------------------------------------------------------- 1 | 2 | tag=include1 3 | 4 | include=conf.d 5 | -------------------------------------------------------------------------------- /resources/config/include2: -------------------------------------------------------------------------------- 1 | 2 | tag = include2 3 | 4 | # Include file: we don't care about extension 5 | include "conf.d/no-include.txt" 6 | 7 | # Don't include when under comment 8 | #include conf.d 9 | -------------------------------------------------------------------------------- /resources/config/include3: -------------------------------------------------------------------------------- 1 | 2 | tag = include3 3 | 4 | # useless include 5 | include 'conf.d/not-existing' 6 | 7 | # Don't include when under comment 8 | # include conf.d 9 | 10 | timeout = 15 -------------------------------------------------------------------------------- /resources/config/include4: -------------------------------------------------------------------------------- 1 | timeout = 0 2 | tag = include4 3 | 4 | logger = 5 | 6 | include 'conf.d/looping-cfg.txt' 7 | -------------------------------------------------------------------------------- /resources/config/include5: -------------------------------------------------------------------------------- 1 | logger = 2 | timeout = 0 3 | tag = include55 4 | 5 | include 'conf.d/looping-cfg.txt' 6 | 7 | tag = include5 8 | timeout = 1 -------------------------------------------------------------------------------- /resources/config/include6: -------------------------------------------------------------------------------- 1 | timeout = 0 2 | tag = include6 3 | 4 | include conf.d 5 | 6 | include conf.d/timeout 7 | -------------------------------------------------------------------------------- /resources/config/include7: -------------------------------------------------------------------------------- 1 | logfile = /tmp/logfile.txt 2 | tag = include7 3 | 4 | include conf.d/timeout 5 | -------------------------------------------------------------------------------- /resources/config/include8: -------------------------------------------------------------------------------- 1 | logfile = /tmp/logfile.txt 2 | tag = include8 3 | 4 | include conf.d/empty-logfile 5 | -------------------------------------------------------------------------------- /resources/config/loop.d/loop.cfg: -------------------------------------------------------------------------------- 1 | 2 | tag=loop 3 | 4 | timeout = 77 5 | 6 | include "conf.d/../../loop.d" 7 | 8 | include = ../loop.d 9 | include ../loop.d 10 | include ../config/../loop.d/// -------------------------------------------------------------------------------- /resources/config/sample1: -------------------------------------------------------------------------------- 1 | #no-inventory=1 2 | no-task=snmpquery,wakeonlan 3 | #no-software=1 4 | tasks=inventory, deploy , inventory 5 | -------------------------------------------------------------------------------- /resources/config/sample2: -------------------------------------------------------------------------------- 1 | #no-inventory=0 2 | #no-software=1 3 | no-category=printer 4 | httpd-trust=example,127.0.0.1,foobar,123.0.0.0/10 5 | conf-reload-interval=-5 6 | -------------------------------------------------------------------------------- /resources/config/sample3: -------------------------------------------------------------------------------- 1 | # no-inventory=1 2 | conf-reload-interval=3600 3 | -------------------------------------------------------------------------------- /resources/config/sample4: -------------------------------------------------------------------------------- 1 | #no-inventory=1 2 | no-task=snmpquery,wakeonlan,inventory 3 | #no-software=1 4 | tasks=inventory, deploy , inventory 5 | conf-reload-interval=15 6 | -------------------------------------------------------------------------------- /resources/esx/esx-4.1.0-1-hostfullinfo.dump.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/esx/esx-4.1.0-1-hostfullinfo.dump.gz -------------------------------------------------------------------------------- /resources/generic/README: -------------------------------------------------------------------------------- 1 | generic command and file samples 2 | 3 | ifconfig 4 | - aix-5.3: ifconfig -l 5 | - aix-6.1: ifconfig -l 6 | - hpux1-lan0: ifconfig lan0 7 | - hpux2-lan0: ifconfig lan0 8 | 9 | netstat: 10 | - hpux*: netstat -nr 11 | - aix-*: netstat -nr 12 | - *bsd: netstat -nr -f inet 13 | - linux1: netstat -nr 14 | -------------------------------------------------------------------------------- /resources/generic/arp/linux: -------------------------------------------------------------------------------- 1 | hostname.test (192.168.0.3) at 00:8d:b9:37:4a:c2 [ether] on eth0 2 | -------------------------------------------------------------------------------- /resources/generic/arp/linux-ip-neighbor: -------------------------------------------------------------------------------- 1 | 10.0.10.1 dev enp3s0 lladdr 00:0d:b9:37:2b:c2 REACHABLE 2 | -------------------------------------------------------------------------------- /resources/generic/arp/none: -------------------------------------------------------------------------------- 1 | Aucune entrée ARP trouvée. 2 | -------------------------------------------------------------------------------- /resources/generic/arp/win32: -------------------------------------------------------------------------------- 1 | 2 | Interface?: 192.168.0.107 --- 0xa 3 | Adresse Internet Adresse physique Type 4 | 192.168.0.1 00-80-0c-07-ae-d3 dynamique 5 | -------------------------------------------------------------------------------- /resources/generic/batteries/upower/enumerate_1.txt: -------------------------------------------------------------------------------- 1 | /org/freedesktop/UPower/devices/line_power_ADP1 2 | /org/freedesktop/UPower/devices/battery_BAT1 3 | /org/freedesktop/UPower/devices/mouse_0003o046Do1017x0006 4 | /org/freedesktop/UPower/devices/DisplayDevice 5 | -------------------------------------------------------------------------------- /resources/generic/batteries/upower/enumerate_2.txt: -------------------------------------------------------------------------------- 1 | /org/freedesktop/UPower/devices/line_power_AC 2 | /org/freedesktop/UPower/devices/battery_BAT0 3 | /org/freedesktop/UPower/devices/unknown_0003o046DoC52Fx0002 4 | /org/freedesktop/UPower/devices/DisplayDevice 5 | -------------------------------------------------------------------------------- /resources/generic/batteries/upower/enumerate_4.txt: -------------------------------------------------------------------------------- 1 | /org/freedesktop/UPower/devices/line_power_AC 2 | /org/freedesktop/UPower/devices/battery_BAT0 3 | /org/freedesktop/UPower/devices/battery_hidpp_battery_0 4 | /org/freedesktop/UPower/devices/DisplayDevice -------------------------------------------------------------------------------- /resources/generic/databases/db2-connect-failure-db2ilist: -------------------------------------------------------------------------------- 1 | db2inst1 2 | -------------------------------------------------------------------------------- /resources/generic/databases/db2-connect-failure-db2ls-c: -------------------------------------------------------------------------------- 1 | #PATH:VRMF:FIXPACK:SPECIAL:INSTALLTIME:INSTALLERUID 2 | /opt/ibm/db2/V11.5:11.5.6.0:0 ::Fri Jun 25 17:05:19 2021 UTC :0 3 | -------------------------------------------------------------------------------- /resources/generic/databases/db2-linux-11.5.6.0-db2ilist: -------------------------------------------------------------------------------- 1 | db2inst1 2 | -------------------------------------------------------------------------------- /resources/generic/databases/db2-linux-11.5.6.0-db2ls-c: -------------------------------------------------------------------------------- 1 | #PATH:VRMF:FIXPACK:SPECIAL:INSTALLTIME:INSTALLERUID 2 | /opt/ibm/db2/V11.5:11.5.6.0:0 ::Fri Jun 25 17:05:19 2021 UTC :0 3 | -------------------------------------------------------------------------------- /resources/generic/databases/db2-linux-11.5.6.0-get-instance: -------------------------------------------------------------------------------- 1 | 2 | The current database manager instance is: db2inst1 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-date_subnow-interval-variable_value-second-from-information_schemaglobal_status-where-variable_nameuptime: -------------------------------------------------------------------------------- 1 | 2021-07-26 10:34:13.000000 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-asteriskcdrdb: -------------------------------------------------------------------------------- 1 | 2014-09-07 21:50:35 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-beacon: -------------------------------------------------------------------------------- 1 | NULL 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-glpi: -------------------------------------------------------------------------------- 1 | 2015-10-01 17:03:02 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-information_schema: -------------------------------------------------------------------------------- 1 | 2021-07-01 18:50:43 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-mysql: -------------------------------------------------------------------------------- 1 | 2015-09-29 20:13:04 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-performance_schema: -------------------------------------------------------------------------------- 1 | NULL 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-maxupdate_time-from-information_schematables-where-table_schema-test: -------------------------------------------------------------------------------- 1 | NULL 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-asteriskcdrdb: -------------------------------------------------------------------------------- 1 | 2014-09-07 21:50:35 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-beacon: -------------------------------------------------------------------------------- 1 | 2015-09-29 20:15:36 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-glpi: -------------------------------------------------------------------------------- 1 | 2015-05-19 15:39:23 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-information_schema: -------------------------------------------------------------------------------- 1 | 2021-07-01 18:50:43 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-mysql: -------------------------------------------------------------------------------- 1 | 2014-09-07 21:49:47 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-performance_schema: -------------------------------------------------------------------------------- 1 | NULL 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-mincreate_time-from-information_schematables-where-table_schema-test: -------------------------------------------------------------------------------- 1 | NULL 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-asteriskcdrdb: -------------------------------------------------------------------------------- 1 | 1933532 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-beacon: -------------------------------------------------------------------------------- 1 | 81920 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-glpi: -------------------------------------------------------------------------------- 1 | 55394605 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-information_schema: -------------------------------------------------------------------------------- 1 | 212992 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-mysql: -------------------------------------------------------------------------------- 1 | 656922 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-performance_schema: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-select-sumdata_lengthindex_length-from-information_schematables-where-table_schema-test: -------------------------------------------------------------------------------- 1 | NULL 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-show-databases: -------------------------------------------------------------------------------- 1 | asteriskcdrdb 2 | beacon 3 | glpi 4 | information_schema 5 | mysql 6 | performance_schema 7 | test 8 | -------------------------------------------------------------------------------- /resources/generic/databases/mariadb-10.4.19-show-variables-like-version: -------------------------------------------------------------------------------- 1 | version 10.4.19-MariaDB 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mongodb-3.6.3-db-admincommand-listdatabases-1-databases: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name" : "admin", 4 | "sizeOnDisk" : 32768, 5 | "empty" : false 6 | }, 7 | { 8 | "name" : "config", 9 | "sizeOnDisk" : 12288, 10 | "empty" : false 11 | }, 12 | { 13 | "name" : "local", 14 | "sizeOnDisk" : 32768, 15 | "empty" : false 16 | } 17 | ] 18 | -------------------------------------------------------------------------------- /resources/generic/databases/mongodb-3.6.3-db-getsiblingdbadmin-runcommandping-1-ok: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mongodb-3.6.3-db-getsiblingdbconfig-runcommandping-1-ok: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mongodb-3.6.3-db-getsiblingdblocal-runcommandping-1-ok: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mongodb-3.6.3-db-version: -------------------------------------------------------------------------------- 1 | 3.6.3 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mongodb-3.6.3-isodate-gettime-db-serverstatus-uptimemillis: -------------------------------------------------------------------------------- 1 | 1639142075207 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mongodb-5.0.1-db-admincommand-listdatabases-1-databases: -------------------------------------------------------------------------------- 1 | [{"name":"admin","sizeOnDisk":40960,"empty":false},{"name":"config","sizeOnDisk":122880,"empty":false},{"name":"local","sizeOnDisk":73728,"empty":false}] 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mongodb-5.0.1-db-getsiblingdbadmin-runcommandping-1-ok: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mongodb-5.0.1-db-getsiblingdbconfig-runcommandping-1-ok: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mongodb-5.0.1-db-getsiblingdblocal-runcommandping-1-ok: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mongodb-5.0.1-db-version: -------------------------------------------------------------------------------- 1 | 5.0.1 2 | -------------------------------------------------------------------------------- /resources/generic/databases/mongodb-5.0.1-isodate-gettime-db-serverstatus-uptimemillis: -------------------------------------------------------------------------------- 1 | 1627292533284 2 | -------------------------------------------------------------------------------- /resources/generic/databases/ora1910-ora195-aix-oraInst.loc: -------------------------------------------------------------------------------- 1 | inventory_loc=resources/generic/databases/ora1910-ora195-aix 2 | inst_group=oinstall 3 | -------------------------------------------------------------------------------- /resources/generic/databases/ora195-oraInst.loc: -------------------------------------------------------------------------------- 1 | inventory_loc=resources/generic/databases/ora195 2 | inst_group=oinstall 3 | -------------------------------------------------------------------------------- /resources/generic/databases/oracle-19c-ORCLCDB-connect-failure-show-release: -------------------------------------------------------------------------------- 1 | ERROR: 2 | ORA-12504: TNS:listener was not given the SERVICE_NAME in CONNECT_DATA 3 | 4 | 5 | release 0 6 | -------------------------------------------------------------------------------- /resources/generic/databases/oracle-19c-ORCLCDB-select-bytes-from-dba_data_files: -------------------------------------------------------------------------------- 1 | 1815 2 | 3 | -------------------------------------------------------------------------------- /resources/generic/databases/oracle-19c-ORCLCDB-select-instance_name-from-instances: -------------------------------------------------------------------------------- 1 | ORCLCDB,ACTIVE,19.3.0.0.0,2021-07-30 05:21:15 2 | 3 | -------------------------------------------------------------------------------- /resources/generic/databases/oracle-19c-ORCLCDB-select-name-from-database: -------------------------------------------------------------------------------- 1 | ORCLCDB,2021-07-27 06:35:22 2 | 3 | -------------------------------------------------------------------------------- /resources/generic/databases/oracle-19c-ORCLCDB-select-timestamp-from-dba_tab_modifications: -------------------------------------------------------------------------------- 1 | 2021-07-30 09:32:54 2 | 3 | -------------------------------------------------------------------------------- /resources/generic/databases/oracle-19c-ORCLCDB-show-release: -------------------------------------------------------------------------------- 1 | release 1903000000 2 | -------------------------------------------------------------------------------- /resources/generic/databases/postgresql-f33-select-datnameoid-from-pg_database: -------------------------------------------------------------------------------- 1 | template1,1 2 | template0,14401 3 | postgres,14402 4 | -------------------------------------------------------------------------------- /resources/generic/databases/postgresql-f33-select-pg_postmaster_start_time: -------------------------------------------------------------------------------- 1 | 2021-07-23 19:10:05.474798+02 2 | -------------------------------------------------------------------------------- /resources/generic/databases/postgresql-f33-select-pg_size_prettypg_database_sizepostgres: -------------------------------------------------------------------------------- 1 | 8297 kB 2 | -------------------------------------------------------------------------------- /resources/generic/databases/postgresql-f33-select-pg_size_prettypg_database_sizetemplate0: -------------------------------------------------------------------------------- 1 | 8297 kB 2 | -------------------------------------------------------------------------------- /resources/generic/databases/postgresql-f33-select-pg_size_prettypg_database_sizetemplate1: -------------------------------------------------------------------------------- 1 | 8297 kB 2 | -------------------------------------------------------------------------------- /resources/generic/databases/postgresql-f33-select-pg_stat_filebase14401modification-from-pg_database: -------------------------------------------------------------------------------- 1 | 2021-07-23 19:10:45+02 2 | 2021-07-23 19:10:45+02 3 | 2021-07-23 19:10:45+02 4 | -------------------------------------------------------------------------------- /resources/generic/databases/postgresql-f33-select-pg_stat_filebase14401pg_versionmodification-from-pg_database: -------------------------------------------------------------------------------- 1 | 2021-07-23 15:06:52+02 2 | 2021-07-23 15:06:52+02 3 | 2021-07-23 15:06:52+02 4 | -------------------------------------------------------------------------------- /resources/generic/databases/postgresql-f33-select-pg_stat_filebase14402modification-from-pg_database: -------------------------------------------------------------------------------- 1 | 2021-07-23 19:10:25+02 2 | 2021-07-23 19:10:25+02 3 | 2021-07-23 19:10:25+02 4 | -------------------------------------------------------------------------------- /resources/generic/databases/postgresql-f33-select-pg_stat_filebase14402pg_versionmodification-from-pg_database: -------------------------------------------------------------------------------- 1 | 2021-07-23 15:06:52+02 2 | 2021-07-23 15:06:52+02 3 | 2021-07-23 15:06:52+02 4 | -------------------------------------------------------------------------------- /resources/generic/databases/postgresql-f33-select-pg_stat_filebase1modification-from-pg_database: -------------------------------------------------------------------------------- 1 | 2021-07-23 19:11:05+02 2 | 2021-07-23 19:11:05+02 3 | 2021-07-23 19:11:05+02 4 | -------------------------------------------------------------------------------- /resources/generic/databases/postgresql-f33-select-pg_stat_filebase1pg_versionmodification-from-pg_database: -------------------------------------------------------------------------------- 1 | 2021-07-23 15:06:52+02 2 | 2021-07-23 15:06:52+02 3 | 2021-07-23 15:06:52+02 4 | -------------------------------------------------------------------------------- /resources/generic/databases/postgresql-f33-show-server_version: -------------------------------------------------------------------------------- 1 | 12.7 2 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-select-namecreate_datestate-from-sysdatabases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2012-express-select-namecreate_datestate-from-sysdatabases -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-select-serverpropertyproductversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2012-express-select-serverpropertyproductversion -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-select-servicename: -------------------------------------------------------------------------------- 1 | SQL Server 2012 2 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-select-sqlserver_start_time-from-sysdm_os_sys_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2012-express-select-sqlserver_start_time-from-sysdm_os_sys_info -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-select-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2012-express-select-version -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-use-master-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | master;6.63 MB;1.83 MB 2 | 3120 KB;1192 KB;1304 KB;624 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-use-master-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2012-express-use-master-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-use-model-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | model;5.06 MB;2.09 MB 2 | 2016 KB;760 KB;952 KB;304 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-use-model-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2012-express-use-model-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-use-msdb-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | msdb;21.25 MB;4.67 MB 2 | 12304 KB;9288 KB;2416 KB;600 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-use-msdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2012-express-use-msdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-use-tempdb-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | tempdb;4.56 MB;2.02 MB 2 | 2088 KB;776 KB;1008 KB;304 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2012-express-use-tempdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2012-express-use-tempdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-select-namecreate_datestate-from-sysdatabases: -------------------------------------------------------------------------------- 1 | master;2003-04-08 09:13:36.390;0 2 | tempdb;2021-07-16 08:56:37.937;0 3 | model;2003-04-08 09:13:36.390;0 4 | msdb;2021-06-25 16:01:11.730;0 5 | 6 | (4 rows affected) 7 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-select-serverpropertyproductversion: -------------------------------------------------------------------------------- 1 | 14.0.3401.7 2 | 3 | (1 rows affected) 4 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-select-servicename: -------------------------------------------------------------------------------- 1 | SQL Server 2017 2 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-select-sqlserver_start_time-from-sysdm_os_sys_info: -------------------------------------------------------------------------------- 1 | 2021-07-16 08:56:37.200 2 | 3 | (1 rows affected) 4 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-select-version: -------------------------------------------------------------------------------- 1 | Microsoft SQL Server 2017 (RTM-CU25) (KB5003830) - 14.0.3401.7 (X64) 2 | Jun 25 2021 14:02:48 3 | Copyright (C) 2017 Microsoft Corporation 4 | Express Edition (64-bit) on Linux (Fedora 33 (Thirty Three)) 5 | 6 | (1 rows affected) 7 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-use-master-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | master;7.38 MB;2.06 MB 2 | 3392 KB;1480 KB;1392 KB;520 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-use-master-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- 1 | 2021-07-15 14:44:50.257 2 | 3 | (1 rows affected) 4 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-use-model-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | model;16.00 MB;5.71 MB 2 | 2344 KB;920 KB;1024 KB;400 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-use-model-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- 1 | 2021-07-15 14:44:50.613 2 | 3 | (1 rows affected) 4 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-use-msdb-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | msdb;21.38 MB;3.70 MB 2 | 12912 KB;9944 KB;2360 KB;608 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-use-msdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- 1 | 2021-07-15 14:44:55.663 2 | 3 | (1 rows affected) 4 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-use-tempdb-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | tempdb;16.00 MB;5.10 MB 2 | 2968 KB;984 KB;1152 KB;832 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2017-on-linux-use-tempdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- 1 | 2021-07-16 09:15:02.577 2 | 3 | (1 rows affected) 4 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-select-namecreate_datestate-from-sysdatabases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2019-select-namecreate_datestate-from-sysdatabases -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-select-serverpropertyproductversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2019-select-serverpropertyproductversion -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-select-servicename: -------------------------------------------------------------------------------- 1 | SQL Server 2019 2 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-select-sqlserver_start_time-from-sysdm_os_sys_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2019-select-sqlserver_start_time-from-sysdm_os_sys_info -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-select-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2019-select-version -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-use-adventureworks2019-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | AdventureWorks2019;336.00 MB;57.13 MB 2 | 211832 KB;97440 KB;87264 KB;27128 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-use-adventureworks2019-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2019-use-adventureworks2019-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-use-master-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | master;7.38 MB;1.94 MB 2 | 3520 KB;1528 KB;1440 KB;552 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-use-master-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2019-use-master-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-use-model-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | model;16.00 MB;5.67 MB 2 | 2384 KB;968 KB;1080 KB;336 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-use-model-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2019-use-model-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-use-msdb-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | msdb;44.06 MB;1.05 MB 2 | 17224 KB;12856 KB;3448 KB;920 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-use-msdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2019-use-msdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-use-tempdb-exec-sp_spaceused: -------------------------------------------------------------------------------- 1 | tempdb;40.00 MB;28.98 MB 2 | 3088 KB;1048 KB;1208 KB;832 KB 3 | -------------------------------------------------------------------------------- /resources/generic/databases/sql-server-2019-use-tempdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/databases/sql-server-2019-use-tempdb-select-top1-modify_date-from-sysobjects-order-by-modify_date-desc -------------------------------------------------------------------------------- /resources/generic/df/linux: -------------------------------------------------------------------------------- 1 | Filesystem Type 1024-blocks Used Available Capacity Mounted on 2 | /dev/sda5 ext4 12396968 5081936 6685288 44% / 3 | /dev/sda3 fuseblk 61442860 19929380 41513480 33% /media/windows 4 | /dev/sda7 crypt 45168664 20417104 22457104 48% /home 5 | -------------------------------------------------------------------------------- /resources/generic/df/netbsd: -------------------------------------------------------------------------------- 1 | Filesystem 1024-blocks Used Available Capacity Mounted on 2 | /dev/wd0a 15475632 11034480 3667376 75% / 3 | kernfs 1 1 0 100% /kern 4 | ptyfs 1 1 0 100% /dev/pts 5 | procfs 4 4 0 100% /proc 6 | -------------------------------------------------------------------------------- /resources/generic/df/openbsd: -------------------------------------------------------------------------------- 1 | Filesystem 1024-blocks Used Available Capacity Mounted on 2 | /dev/wd0a 803606 585070 178356 77% / 3 | /dev/wd0e 257708 2 244822 0% /home 4 | /dev/wd0d 914308 638450 230144 74% /usr 5 | -------------------------------------------------------------------------------- /resources/generic/edid/EV2785: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/EV2785 -------------------------------------------------------------------------------- /resources/generic/edid/IMP2262: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/IMP2262 -------------------------------------------------------------------------------- /resources/generic/edid/acer-al1716: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-al1716 -------------------------------------------------------------------------------- /resources/generic/edid/acer-al1716.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-al1716.2 -------------------------------------------------------------------------------- /resources/generic/edid/acer-al1717: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-al1717 -------------------------------------------------------------------------------- /resources/generic/edid/acer-al1717.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-al1717.2 -------------------------------------------------------------------------------- /resources/generic/edid/acer-al1916w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-al1916w -------------------------------------------------------------------------------- /resources/generic/edid/acer-al1917: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-al1917 -------------------------------------------------------------------------------- /resources/generic/edid/acer-b226wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-b226wl -------------------------------------------------------------------------------- /resources/generic/edid/acer-b247y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-b247y -------------------------------------------------------------------------------- /resources/generic/edid/acer-h6517abd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-h6517abd -------------------------------------------------------------------------------- /resources/generic/edid/acer-k242hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-k242hql -------------------------------------------------------------------------------- /resources/generic/edid/acer-p1203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-p1203 -------------------------------------------------------------------------------- /resources/generic/edid/acer-p1206p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-p1206p -------------------------------------------------------------------------------- /resources/generic/edid/acer-p1283: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-p1283 -------------------------------------------------------------------------------- /resources/generic/edid/acer-p5260i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-p5260i -------------------------------------------------------------------------------- /resources/generic/edid/acer-r240hy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-r240hy -------------------------------------------------------------------------------- /resources/generic/edid/acer-sa240y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-sa240y -------------------------------------------------------------------------------- /resources/generic/edid/acer-v193: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v193 -------------------------------------------------------------------------------- /resources/generic/edid/acer-v193.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v193.2 -------------------------------------------------------------------------------- /resources/generic/edid/acer-v193.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v193.3 -------------------------------------------------------------------------------- /resources/generic/edid/acer-v193hqv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v193hqv -------------------------------------------------------------------------------- /resources/generic/edid/acer-v193l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v193l -------------------------------------------------------------------------------- /resources/generic/edid/acer-v193l.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v193l.2 -------------------------------------------------------------------------------- /resources/generic/edid/acer-v193w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v193w -------------------------------------------------------------------------------- /resources/generic/edid/acer-v196l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v196l -------------------------------------------------------------------------------- /resources/generic/edid/acer-v203h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v203h -------------------------------------------------------------------------------- /resources/generic/edid/acer-v203w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v203w -------------------------------------------------------------------------------- /resources/generic/edid/acer-v223hq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v223hq -------------------------------------------------------------------------------- /resources/generic/edid/acer-v226hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v226hql -------------------------------------------------------------------------------- /resources/generic/edid/acer-v226hql.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v226hql.2 -------------------------------------------------------------------------------- /resources/generic/edid/acer-v247y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v247y -------------------------------------------------------------------------------- /resources/generic/edid/acer-v276hl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-v276hl -------------------------------------------------------------------------------- /resources/generic/edid/acer-x125h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-x125h -------------------------------------------------------------------------------- /resources/generic/edid/acer-x128h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-x128h -------------------------------------------------------------------------------- /resources/generic/edid/acer-xga-pj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/acer-xga-pj -------------------------------------------------------------------------------- /resources/generic/edid/aic-e-191: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/aic-e-191 -------------------------------------------------------------------------------- /resources/generic/edid/benq-bl2420-tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/benq-bl2420-tf -------------------------------------------------------------------------------- /resources/generic/edid/benq-bl2420-tf.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/benq-bl2420-tf.2 -------------------------------------------------------------------------------- /resources/generic/edid/benq-bl2420-tf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/benq-bl2420-tf.3 -------------------------------------------------------------------------------- /resources/generic/edid/crt.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.13 -------------------------------------------------------------------------------- /resources/generic/edid/crt.E55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.E55 -------------------------------------------------------------------------------- /resources/generic/edid/crt.LG-Studioworks-N2200P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.LG-Studioworks-N2200P -------------------------------------------------------------------------------- /resources/generic/edid/crt.SM550S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.SM550S -------------------------------------------------------------------------------- /resources/generic/edid/crt.SM550V: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.SM550V -------------------------------------------------------------------------------- /resources/generic/edid/crt.dell-d1626ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.dell-d1626ht -------------------------------------------------------------------------------- /resources/generic/edid/crt.dell-e190s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.dell-e190s -------------------------------------------------------------------------------- /resources/generic/edid/crt.dell-p1110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.dell-p1110 -------------------------------------------------------------------------------- /resources/generic/edid/crt.dell-p190s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.dell-p190s -------------------------------------------------------------------------------- /resources/generic/edid/crt.dell-p790: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.dell-p790 -------------------------------------------------------------------------------- /resources/generic/edid/crt.emc0313: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.emc0313 -------------------------------------------------------------------------------- /resources/generic/edid/crt.hyundai-ImageQuest-L70S+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.hyundai-ImageQuest-L70S+ -------------------------------------------------------------------------------- /resources/generic/edid/crt.iiyama-1451: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.iiyama-1451 -------------------------------------------------------------------------------- /resources/generic/edid/crt.iiyama-404: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.iiyama-404 -------------------------------------------------------------------------------- /resources/generic/edid/crt.iiyama-410pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.iiyama-410pro -------------------------------------------------------------------------------- /resources/generic/edid/crt.leia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.leia -------------------------------------------------------------------------------- /resources/generic/edid/crt.med2914: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.med2914 -------------------------------------------------------------------------------- /resources/generic/edid/crt.nokia-valuegraph-447w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.nokia-valuegraph-447w -------------------------------------------------------------------------------- /resources/generic/edid/crt.sony-gdm400ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.sony-gdm400ps -------------------------------------------------------------------------------- /resources/generic/edid/crt.sony-gdm420: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.sony-gdm420 -------------------------------------------------------------------------------- /resources/generic/edid/crt.test_box_lmontel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/crt.test_box_lmontel -------------------------------------------------------------------------------- /resources/generic/edid/iiyama-PL2779A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/iiyama-PL2779A -------------------------------------------------------------------------------- /resources/generic/edid/lcd.20inches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.20inches -------------------------------------------------------------------------------- /resources/generic/edid/lcd.Elonex-PR600: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.Elonex-PR600 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.HP-Pavilion-ZV6000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.HP-Pavilion-ZV6000 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-al19161.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-al19161.1 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-al19161.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-al19161.2 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-al19161.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-al19161.3 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-al19161.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-al19161.4 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-al1921: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-al1921 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-asp1680: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-asp1680 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-b196hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-b196hql -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-b226hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-b226hql -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-b226hql.28.2016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-b226hql.28.2016 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-b243h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-b243h -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-g227hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-g227hql -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-g236hl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-g236hl -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-h226hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-h226hql -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-k222hql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-k222hql -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-ka240hq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-ka240hq -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-r221q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-r221q -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-s273hl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-s273hl -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-sa220q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-sa220q -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-v193.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-v193.1 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-v193.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-v193.2 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-v193.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-v193.3 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-v243h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-v243h -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-v246hl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-v246hl -------------------------------------------------------------------------------- /resources/generic/edid/lcd.acer-x193hq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.acer-x193hq -------------------------------------------------------------------------------- /resources/generic/edid/lcd.b-101750: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.b-101750 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.benq-t904: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.benq-t904 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.blino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.blino -------------------------------------------------------------------------------- /resources/generic/edid/lcd.cmc-17-AD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.cmc-17-AD -------------------------------------------------------------------------------- /resources/generic/edid/lcd.compaq-evo-n1020v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.compaq-evo-n1020v -------------------------------------------------------------------------------- /resources/generic/edid/lcd.dell-2001fp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.dell-2001fp -------------------------------------------------------------------------------- /resources/generic/edid/lcd.dell-U2410: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.dell-U2410 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.dell-U2413: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.dell-U2413 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.dell-U2415: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.dell-U2415 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.dell-inspiron-6400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.dell-inspiron-6400 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.eizo-l997: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.eizo-l997 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.fujitsu-a171: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.fujitsu-a171 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.gericom-cy-96: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.gericom-cy-96 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.hp-l1950: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.hp-l1950 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.hp-nx-7000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.hp-nx-7000 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.hp-nx-7010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.hp-nx-7010 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.iiyama-pl2409hd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.iiyama-pl2409hd -------------------------------------------------------------------------------- /resources/generic/edid/lcd.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.internal -------------------------------------------------------------------------------- /resources/generic/edid/lcd.lenovo-3000-v100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.lenovo-3000-v100 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.lenovo-w500: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.lenovo-w500 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.lg-l1960.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.lg-l1960.1 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.lg-l1960.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.lg-l1960.2 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.lg.tv.22MT44DP-PZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.lg.tv.22MT44DP-PZ -------------------------------------------------------------------------------- /resources/generic/edid/lcd.philips-150s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.philips-150s -------------------------------------------------------------------------------- /resources/generic/edid/lcd.philips-180b2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.philips-180b2 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.philips-241b-vga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.philips-241b-vga -------------------------------------------------------------------------------- /resources/generic/edid/lcd.philips-288p6-hdmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.philips-288p6-hdmi -------------------------------------------------------------------------------- /resources/generic/edid/lcd.philips-288p6-vga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.philips-288p6-vga -------------------------------------------------------------------------------- /resources/generic/edid/lcd.presario-R4000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.presario-R4000 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.rafael: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.rafael -------------------------------------------------------------------------------- /resources/generic/edid/lcd.regis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.regis -------------------------------------------------------------------------------- /resources/generic/edid/lcd.samsung-191n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.samsung-191n -------------------------------------------------------------------------------- /resources/generic/edid/lcd.samsung-2494hm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.samsung-2494hm -------------------------------------------------------------------------------- /resources/generic/edid/lcd.samsung-s22c450: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.samsung-s22c450 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.samsung-s24e450: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.samsung-s24e450 -------------------------------------------------------------------------------- /resources/generic/edid/lcd.tv.VQ32-1T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.tv.VQ32-1T -------------------------------------------------------------------------------- /resources/generic/edid/lcd.viewsonic-vx715: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lcd.viewsonic-vx715 -------------------------------------------------------------------------------- /resources/generic/edid/lenovo-LT2452: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lenovo-LT2452 -------------------------------------------------------------------------------- /resources/generic/edid/lenovo-T24v-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/lenovo-T24v-10 -------------------------------------------------------------------------------- /resources/generic/edid/samsung-s22e390: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/edid/samsung-s22e390 -------------------------------------------------------------------------------- /resources/generic/hdparm/linux2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/hdparm/linux2 -------------------------------------------------------------------------------- /resources/generic/hpacucli/README: -------------------------------------------------------------------------------- 1 | slots: hpacucli ctrl all show 2 | drives: hpacucli ctrl slot=2 pd all show 3 | storage: hpacucli ctrl slot=2 pd 2I:1:1 show 4 | -------------------------------------------------------------------------------- /resources/generic/hpacucli/sample1-drives: -------------------------------------------------------------------------------- 1 | Smart Array E200 in Slot 2 2 | array A 3 | physicaldrive 2I:1:1 (port 2I:box 1:bay 1, SATA, 74.3 GB, OK) 4 | physicaldrive 2I:1:2 (port 2I:box 1:bay 2, SATA, 74.3 GB, OK) 5 | -------------------------------------------------------------------------------- /resources/generic/hpacucli/sample1-slots: -------------------------------------------------------------------------------- 1 | Smart Array E200 in Slot 2 (sn: PA6C90K9SUH1ZA) 2 | -------------------------------------------------------------------------------- /resources/generic/hpacucli/sample2-drives: -------------------------------------------------------------------------------- 1 | Smart Array P410i in Slot 0 (Embedded) 2 | array A 3 | physicaldrive 1I:1:1 (port 1I:box 1:bay 1, SATA, 1 TB, OK) 4 | physicaldrive 1I:1:2 (port 1I:box 1:bay 2, SATA, 1 TB, OK) 5 | -------------------------------------------------------------------------------- /resources/generic/hpacucli/sample2-slots: -------------------------------------------------------------------------------- 1 | Smart Array P212 in Slot 3 (sn: PACCPID121417V4) 2 | Smart Array P410i in Slot 0 (Embedded) (sn: 5001438021EF0380) 3 | -------------------------------------------------------------------------------- /resources/generic/hpacucli/sample3-drives: -------------------------------------------------------------------------------- 1 | 2 | Smart Array P420i in Slot 0 (Embedded) 3 | 4 | array A 5 | 6 | physicaldrive 1I:1:1 (port 1I:box 1:bay 1, SAS, 300 GB, OK) 7 | 8 | -------------------------------------------------------------------------------- /resources/generic/hpacucli/sample3-slots: -------------------------------------------------------------------------------- 1 | 2 | Smart Array P420i in Slot 0 (Embedded) (sn: 001438022006330) 3 | 4 | -------------------------------------------------------------------------------- /resources/generic/ifconfig/aix-5.3: -------------------------------------------------------------------------------- 1 | en0 lo0 2 | -------------------------------------------------------------------------------- /resources/generic/ifconfig/aix-6.1: -------------------------------------------------------------------------------- 1 | en0 en1 lo0 2 | -------------------------------------------------------------------------------- /resources/generic/ifconfig/hpux1-lan0: -------------------------------------------------------------------------------- 1 | lan0: flags=1843 2 | inet 10.0.4.56 netmask ffffffe0 broadcast 10.0.4.63 3 | -------------------------------------------------------------------------------- /resources/generic/ifconfig/hpux2-lan0: -------------------------------------------------------------------------------- 1 | lan0: flags=1843 2 | inet 10.0.0.48 netmask ffffffe0 broadcast 10.0.0.63 3 | -------------------------------------------------------------------------------- /resources/generic/license/adobe/README: -------------------------------------------------------------------------------- 1 | sqlite3 -separator " <> " "/Library/Application Support/Adobe/Adobe PCD/cache/cache.db" "SELECT * FROM domain_data" > resources/generic/license/adobe/cache.db-sample1 2 | -------------------------------------------------------------------------------- /resources/generic/license/adobe/cache.db-sample1.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/license/adobe/cache.db-sample1.db -------------------------------------------------------------------------------- /resources/generic/lspci/linux-asus-portable.nvidia-settings.gpus: -------------------------------------------------------------------------------- 1 | 1 GPU on all 2 | 3 | [0] [gpu:0] (NVIDIA GeForce GTX 1650 with Max-Q Design) 4 | 5 | Has the following names: 6 | GPU-0 7 | GPU-4640c21d-ed13-51ba-5d41-1ff313225d61 8 | -------------------------------------------------------------------------------- /resources/generic/lspci/nvidia-1.nvidia-settings.gpus: -------------------------------------------------------------------------------- 1 | 1 GPU on all 2 | 3 | [0] [gpu:0] (NVIDIA GeForce RTX 2060 SUPER) 4 | 5 | Has the following names: 6 | GPU-0 7 | GPU-8c02e385-d237-527d-f284-f726241967c1 8 | 9 | -------------------------------------------------------------------------------- /resources/generic/mount/darwin: -------------------------------------------------------------------------------- 1 | /dev/disk0s2 on / (local, journaled) 2 | devfs on /dev (local) 3 | fdesc on /dev (union) 4 | on /.vol 5 | /dev/disk0s3 on /Volumes/data (local, journaled) 6 | automount -nsl [141] on /Network (automounted) 7 | automount -fstab [147] on /automount/Servers (automounted) 8 | automount -static [147] on /automount/static (automounted) 9 | -------------------------------------------------------------------------------- /resources/generic/mount/freebsd: -------------------------------------------------------------------------------- 1 | /dev/mirror/gm0s1d on / (ufs, local, soft-updates) 2 | -------------------------------------------------------------------------------- /resources/generic/powersupplies/dmidecode_1.txt: -------------------------------------------------------------------------------- 1 | # dmidecode 2.12 2 | SMBIOS 2.7 present. 3 | 4 | -------------------------------------------------------------------------------- /resources/generic/powersupplies/dmidecode_3.txt: -------------------------------------------------------------------------------- 1 | # dmidecode 2.12 2 | SMBIOS 2.7 present. 3 | 4 | -------------------------------------------------------------------------------- /resources/generic/rms/rms-7.0.0.1-Parameters.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/rms/rms-7.0.0.1-Parameters.reg -------------------------------------------------------------------------------- /resources/generic/stat/debian-11: -------------------------------------------------------------------------------- 1 | 2022-02-04 12:18:02.948358092 +0100 2 | -------------------------------------------------------------------------------- /resources/generic/stat/macos-10.15: -------------------------------------------------------------------------------- 1 | 1606741594 2 | -------------------------------------------------------------------------------- /resources/generic/teamviewer/teamviewer-14.1.3399-TeamViewer.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/teamviewer/teamviewer-14.1.3399-TeamViewer.reg -------------------------------------------------------------------------------- /resources/generic/teamviewer/teamviewer-15.27.3-TeamViewer.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/teamviewer/teamviewer-15.27.3-TeamViewer.reg -------------------------------------------------------------------------------- /resources/generic/tw_cli/cards: -------------------------------------------------------------------------------- 1 | Ctl Model Ports Drives Units NotOpt RRate VRate BBU 2 | ------------------------------------------------------------------------ 3 | c0 9650SE-2LP 2 2 1 0 1 1 - 4 | -------------------------------------------------------------------------------- /resources/generic/tw_cli/ports: -------------------------------------------------------------------------------- 1 | Port Status Unit Size Blocks Serial 2 | --------------------------------------------------------------- 3 | p0 OK u0 69.25 GB 145226112 WD-WMANS1648590 4 | p1 OK u0 69.25 GB 145226112 WD-WMANS1344790 5 | -------------------------------------------------------------------------------- /resources/generic/tw_cli/storage: -------------------------------------------------------------------------------- 1 | /c0/p0 Model = WDC WD740ADFD-00NLR4 2 | /c0/p0 Serial = WD-WMANS1648590 3 | /c0/p0 Capacity = 69.25 GB (145226112 Blocks) 4 | /c0/p0 Firmware Version = 21.07QR4 5 | -------------------------------------------------------------------------------- /resources/generic/tw_cli/units: -------------------------------------------------------------------------------- 1 | Unit UnitType Status %RCmpl %V/I/M Stripe Size(GB) Cache AVrfy 2 | ------------------------------------------------------------------------------ 3 | u0 RAID-1 OK - - - 65.1826 ON OFF 4 | -------------------------------------------------------------------------------- /resources/generic/xorg/linux-vesa-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/generic/xorg/linux-vesa-3 -------------------------------------------------------------------------------- /resources/hpux/bdf/hpux1-nfs: -------------------------------------------------------------------------------- 1 | Filesystem kbytes used avail %used Mounted on 2 | nfs:/u02/logs/root/kbmon/hpux/dgs/output/ignsrv 3 | 50412224 30266304 17585104 63% /net/hpux-dgs-output 4 | -------------------------------------------------------------------------------- /resources/hpux/bdf/hpux2-nfs: -------------------------------------------------------------------------------- 1 | Filesystem kbytes used avail %used Mounted on 2 | ignsrv:/storage/Archive 3 | 3984588800 2790675224 1184657264 70% /net/Archive 4 | nfs:/u02/logs/root/kbmon/hpux/dgs/output 5 | 50412224 30244184 17607224 63% /net/hpux-dgs-chdo 6 | -------------------------------------------------------------------------------- /resources/hpux/fstyp/hpux1: -------------------------------------------------------------------------------- 1 | hfs 2 | nfs 3 | cdfs 4 | autofs 5 | cachefs 6 | ffs 7 | lofs 8 | nfs3 9 | procfs 10 | vxfs 11 | cifs 12 | pipefs 13 | -------------------------------------------------------------------------------- /resources/hpux/fstyp/hpux2: -------------------------------------------------------------------------------- 1 | hfs 2 | nfs 3 | cdfs 4 | DevFS 5 | autofs 6 | cachefs 7 | ffs 8 | lofs 9 | nfs3 10 | procfs 11 | vxfs 12 | cifs 13 | pipefs 14 | -------------------------------------------------------------------------------- /resources/hpux/getMPInfo.cgi/hpux2: -------------------------------------------------------------------------------- 1 | content-type: text/html 2 | 3 | parent.frames.CHPAppletFrame.chpMiscData.RIBName = "Embedded iLO"; 4 | parent.frames.CHPAppletFrame.chpMiscData.RIBLink = "https://10.0.14.60"; 5 | -------------------------------------------------------------------------------- /resources/hpux/hpvminfo/hpux3: -------------------------------------------------------------------------------- 1 | hpvminfo: Running inside an HPVM guest. 2 | -------------------------------------------------------------------------------- /resources/hpux/hpvminfo/hpux4: -------------------------------------------------------------------------------- 1 | hpvminfo: Running on an HPVM host. 2 | -------------------------------------------------------------------------------- /resources/hpux/ioscan/hpux1-ioa: -------------------------------------------------------------------------------- 1 | em:central_bus:F:F:F:-1:-1:4294967295:ioa:sba:0:16 60 18 41 0 0 0 3 0 0 0 0 224 0 0 1 115 98 97 0 102 102 102 102 102 102 102 103 0 0 0 0 67 76 65 73 :0:root.sba:sba:CLAIMED:BUS_NEXUS:System Bus Adapter (1229):0 2 | -------------------------------------------------------------------------------- /resources/hpux/ioscan/hpux2-ioa: -------------------------------------------------------------------------------- 1 | em:central_bus:F:F:F:-1:-1:4294967295:ioa:sba:0:16 60 18 41 0 0 0 3 0 0 0 0 224 0 0 1 115 98 97 0 102 102 102 102 102 102 102 103 0 0 0 0 67 76 65 73 :0:root.sba:sba:CLAIMED:BUS_NEXUS:System Bus Adapter (1229):0 2 | -------------------------------------------------------------------------------- /resources/hpux/lanscan/hpux1: -------------------------------------------------------------------------------- 1 | 0x0016353EAC5C lan0 snap0 0 2 | 0x0016353EAC5D lan1 snap1 1 3 | -------------------------------------------------------------------------------- /resources/hpux/lanscan/hpux2: -------------------------------------------------------------------------------- 1 | 0x0016353EAC44 lan0 snap0 0 2 | 0x0016353EAC45 lan1 snap1 1 3 | 0x000000000000 lan900 snap900 900 4 | 0x000000000000 lan901 snap901 901 5 | 0x000000000000 lan902 snap902 902 6 | 0x000000000000 lan903 snap903 903 7 | 0x000000000000 lan904 snap904 904 8 | -------------------------------------------------------------------------------- /resources/hpux/model/hpux1: -------------------------------------------------------------------------------- 1 | ia64 hp server rx2620 2 | -------------------------------------------------------------------------------- /resources/hpux/model/hpux2: -------------------------------------------------------------------------------- 1 | ia64 hp server rx2620 2 | -------------------------------------------------------------------------------- /resources/hpux/model/hpux3: -------------------------------------------------------------------------------- 1 | ia64 hp server Integrity Virtual Machine 2 | -------------------------------------------------------------------------------- /resources/hpux/model/hpux4: -------------------------------------------------------------------------------- 1 | ia64 hp Integrity BL870c i2 2 | -------------------------------------------------------------------------------- /resources/hpux/swapinfo/hpux: -------------------------------------------------------------------------------- 1 | Kb Kb Kb PCT Kb 2 | TYPE AVAIL USED FREE USED START RESERVE PRI NAME 3 | dev 83886080 0 83886080 0% 0 - 1 /dev/vg00/lvol2 4 | total 83886080 0 83886080 0% - 0 - 5 | -------------------------------------------------------------------------------- /resources/hpux/swapinfo/hpux1: -------------------------------------------------------------------------------- 1 | Kb Kb Kb PCT Kb 2 | TYPE AVAIL USED FREE USED START RESERVE PRI NAME 3 | dev 8388608 0 8388608 0% 0 - 1 /dev/vg00/lvol2 4 | total 8388608 0 8388608 0% - 0 - 5 | -------------------------------------------------------------------------------- /resources/hpux/swapinfo/hpux2: -------------------------------------------------------------------------------- 1 | Kb Kb Kb PCT Kb 2 | TYPE AVAIL USED FREE USED START RESERVE PRI NAME 3 | dev 8388608 188696 8199912 2% 0 - 1 /dev/vg00/lvol2 4 | total 8388608 188696 8199912 2% - 0 - 5 | -------------------------------------------------------------------------------- /resources/hpux/uptime/sample1: -------------------------------------------------------------------------------- 1 | 3:24pm up 122 days, 23:35, 2 users, load average: 0.14, 0.20, 0.25 2 | -------------------------------------------------------------------------------- /resources/linux/antivirus/cortex-xdr-8.2.1.120305-info: -------------------------------------------------------------------------------- 1 | Cortex XDR (R) supervisor tool 8.2.1.120305 2 | (c) Palo Alto Networks, Inc. All rights reserved 3 | 4 | General Cortex XDR information 5 | 6 | -------------------------------------------------------------------------------- /resources/linux/antivirus/cortex-xdr-8.2.1.120305-info-query: -------------------------------------------------------------------------------- 1 | Content Type: 1270 2 | Content Build: 120305 3 | Content Version: 1270-120305 4 | Event Log: 1 5 | 6 | -------------------------------------------------------------------------------- /resources/linux/antivirus/not-expected-output.json: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /resources/linux/ddcprobe/HT009154WU2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/linux/ddcprobe/HT009154WU2 -------------------------------------------------------------------------------- /resources/linux/distro/astra_license-astralinux-1.8: -------------------------------------------------------------------------------- 1 | MODE=2 2 | DESCRIPTION=maximum(smolensk) 3 | URL=https://astralinux.ru/information/licenses 4 | -------------------------------------------------------------------------------- /resources/linux/distro/build_version-astralinux-1.8: -------------------------------------------------------------------------------- 1 | 1.8.2.7 2 | -------------------------------------------------------------------------------- /resources/linux/distro/centos-release-centos-7.9: -------------------------------------------------------------------------------- 1 | CentOS Linux release 7.9.2009 (Core) 2 | -------------------------------------------------------------------------------- /resources/linux/distro/debian_version-debian-11.2: -------------------------------------------------------------------------------- 1 | 11.2 2 | -------------------------------------------------------------------------------- /resources/linux/distro/os-release-astralinux-1.8: -------------------------------------------------------------------------------- 1 | PRETTY_NAME="Astra Linux" 2 | NAME="Astra Linux" 3 | ID=astra 4 | ID_LIKE=debian 5 | ANSI_COLOR="1;31" 6 | HOME_URL="https://astralinux.ru" 7 | SUPPORT_URL="https://astralinux.ru/support" 8 | LOGO=astra 9 | VERSION_ID=1.8_x86-64 10 | VERSION_CODENAME=1.8_x86-64 11 | VARIANT_ID=se 12 | -------------------------------------------------------------------------------- /resources/linux/distro/os-release-debian-11.2: -------------------------------------------------------------------------------- 1 | PRETTY_NAME="Debian GNU/Linux 11 (bullseye)" 2 | NAME="Debian GNU/Linux" 3 | VERSION_ID="11" 4 | VERSION="11 (bullseye)" 5 | VERSION_CODENAME=bullseye 6 | ID=debian 7 | HOME_URL="https://www.debian.org/" 8 | SUPPORT_URL="https://www.debian.org/support" 9 | BUG_REPORT_URL="https://bugs.debian.org/" 10 | -------------------------------------------------------------------------------- /resources/linux/docker/docker-network-ls: -------------------------------------------------------------------------------- 1 | c9e960a0c68b 2 | -------------------------------------------------------------------------------- /resources/linux/equery/gentoo1: -------------------------------------------------------------------------------- 1 | equery(0.1.4) - Gentoo Package Query Tool 2 | Author(s): Karl Trygve Kalleberg 3 | -------------------------------------------------------------------------------- /resources/linux/equery/gentoo2: -------------------------------------------------------------------------------- 1 | equery (0.3.0) - Gentoo package query tool 2 | -------------------------------------------------------------------------------- /resources/linux/firewall/ubuntu_ufw_status_OFF.txt: -------------------------------------------------------------------------------- 1 | Status: inactive 2 | -------------------------------------------------------------------------------- /resources/linux/gentoo/equery/0.1.4: -------------------------------------------------------------------------------- 1 | equery(0.1.4) - Gentoo Package Query Tool 2 | Author(s): Karl Trygve Kalleberg 3 | -------------------------------------------------------------------------------- /resources/linux/gentoo/equery/0.3.0: -------------------------------------------------------------------------------- 1 | equery (0.3.0) - Gentoo package query tool 2 | -------------------------------------------------------------------------------- /resources/linux/gentoo/equery/README: -------------------------------------------------------------------------------- 1 | equery --version 2 | -------------------------------------------------------------------------------- /resources/linux/hponcfg/sample2: -------------------------------------------------------------------------------- 1 | Firmware Revision = 2.05 Device type = iLO 2 Driver name = hpilo 2 | sh: xsltproc: not found 3 | ERROR: Failed to capture the configuration.# 4 | -------------------------------------------------------------------------------- /resources/linux/ip/default-gateway-1: -------------------------------------------------------------------------------- 1 | default via 192.168.1.254 dev wlan0 proto dhcp src 192.168.1.10 metric 600 2 | -------------------------------------------------------------------------------- /resources/linux/ip/default-gateway-2: -------------------------------------------------------------------------------- 1 | default via 192.168.1.254 dev eth0 proto dhcp src 192.168.1.11 metric 100 2 | default via 192.168.2.254 dev lxcbr proto static metric 425 3 | -------------------------------------------------------------------------------- /resources/linux/ip/default-gateway-3: -------------------------------------------------------------------------------- 1 | default via 192.168.1.254 dev ens193 onlink 2 | 3 | -------------------------------------------------------------------------------- /resources/linux/ip/ip_addr-4: -------------------------------------------------------------------------------- 1 | 14: ib0: mtu 2044 qdisc mq state UP qlen 1024 2 | link/infiniband a0:00:01:00:fe:80:00:00:00:00:00:00:00:02:c9:03:00:15:94:d1 brd 00:ff:ff:ff:ff:12:40:1b:ff:ff:00:00:00:00:00:00:ff:ff:ff:ff 3 | inet 10.89.96.11/20 scope global ib0 4 | -------------------------------------------------------------------------------- /resources/linux/iwconfig/sample1: -------------------------------------------------------------------------------- 1 | wlan0 IEEE 802.11abgn ESSID:off/any 2 | Mode:Managed Access Point: Not-Associated Tx-Power=16 dBm 3 | Retry short limit:7 RTS thr:off Fragment thr:off 4 | Power Management:off 5 | 6 | -------------------------------------------------------------------------------- /resources/linux/megacli/set1_adpCount: -------------------------------------------------------------------------------- 1 | 2 | 3 | Controller Count: 1. 4 | 5 | Exit Code: 0x01 6 | -------------------------------------------------------------------------------- /resources/linux/megacli/set2_adpCount: -------------------------------------------------------------------------------- 1 | 2 | 3 | Controller Count: 1. 4 | 5 | Exit Code: 0x01 6 | -------------------------------------------------------------------------------- /resources/linux/megacli/set6_AdpPciInfo: -------------------------------------------------------------------------------- 1 | 2 | PCI information for Controller 0 3 | -------------------------------- 4 | Bus Number : 3 5 | Device Number : 0 6 | Function Number : 0 7 | 8 | 9 | Exit Code: 0x00 10 | -------------------------------------------------------------------------------- /resources/linux/megacli/set7_AdpPciInfo: -------------------------------------------------------------------------------- 1 | 2 | PCI information for Controller 0 3 | -------------------------------- 4 | Bus Number : 3b 5 | Device Number : 0 6 | Function Number : 0 7 | 8 | 9 | Exit Code: 0x00 10 | -------------------------------------------------------------------------------- /resources/linux/packaging/fedora-35: -------------------------------------------------------------------------------- 1 | 1643183492 2 | -------------------------------------------------------------------------------- /resources/linux/proc/1-environ.txt: -------------------------------------------------------------------------------- 1 | PATH=/bin:/sbinTERM=linuxcontainer=lxc-libvirtcontainer_uuid=61568ec7-4ec9-4a26-89cd-94e29a91721aLIBVIRT_LXC_UUID=61568ec7-4ec9-4a26-89cd-94e29a91721aLIBVIRT_LXC_NAME=srv3 -------------------------------------------------------------------------------- /resources/linux/proc/cpuinfo/cpuinfo-vmware-esx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/linux/proc/cpuinfo/cpuinfo-vmware-esx -------------------------------------------------------------------------------- /resources/linux/proc/cpuinfo/esx: -------------------------------------------------------------------------------- 1 | processor : 0 2 | vendor_id : AuthenticAMD 3 | cpu family : 16 4 | model : 4 5 | model name : Quad-Core AMD Opteron(tm) Processor 2376 6 | stepping : 2 7 | cpu MHz : 2300.092 8 | -------------------------------------------------------------------------------- /resources/linux/proc/cpuinfo/linux-ppc-1: -------------------------------------------------------------------------------- 1 | processor : 0 2 | cpu : 604r 3 | clock : ??? 4 | revision : 49.2 (pvr 0009 3102) 5 | bogomips : 299.00 6 | machine : PReP Utah (Powerstack II Pro4000) 7 | l2 cache : 512KiB, parity disabled SRAM:synchronous, pipelined, no parity 8 | -------------------------------------------------------------------------------- /resources/linux/proc/scsi/linux1: -------------------------------------------------------------------------------- 1 | Attached devices: 2 | Host: scsi0 Channel: 00 Id: 00 Lun: 00 3 | Vendor: ATA Model: SAMSUNG SSD PM80 Rev: VBM2 4 | Type: Direct-Access ANSI SCSI revision: 05 5 | -------------------------------------------------------------------------------- /resources/linux/smartctl/sample4: -------------------------------------------------------------------------------- 1 | smartctl version 5.38 [x86_64-redhat-linux-gnu] Copyright (C) 2002-8 Bruce Allen 2 | Home page is http://smartmontools.sourceforge.net/ 3 | 4 | Device: IBM-ESXS VSC7160 Version: 1.06 5 | Device type: enclosure 6 | Local Time is: Sat Apr 28 12:03:57 2012 MSK 7 | Device does not support SMART 8 | -------------------------------------------------------------------------------- /resources/linux/storages/f31-nanobox.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/linux/storages/f31-nanobox.dump -------------------------------------------------------------------------------- /resources/linux/storages/f33-imac.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/linux/storages/f33-imac.dump -------------------------------------------------------------------------------- /resources/linux/storages/sles-multipath-sas.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/linux/storages/sles-multipath-sas.dump -------------------------------------------------------------------------------- /resources/lvm/linux/lvs/README: -------------------------------------------------------------------------------- 1 | lvs -a --noheading --nosuffix --units M -o lv_name,vg_uuid,lv_attr,lv_size,lv_uuid,seg_count 2 | -------------------------------------------------------------------------------- /resources/lvm/linux/pvs/README: -------------------------------------------------------------------------------- 1 | pvs --noheading --nosuffix --units M -o pv_name,pv_fmt,pv_attr,pv_size,pv_free,pv_uuid,pv_pe_count,vg_uuid 2 | -------------------------------------------------------------------------------- /resources/lvm/linux/pvs/linux-1: -------------------------------------------------------------------------------- 1 | /dev/sda5 lvm2 a- 15846.08 0 MjsnP7-GaGC-NIo7-tS3o-gf2t-di2R-eP3Au7 3778 2 | /dev/sdb1 lvm2 a- 2466.25 2256.54 LNDa6y-PQGQ-gtnc-c7Wc-W2lS-Soaf-Bwu2Me 588 3 | /dev/sdb2 lvm2 a- 2894.07 2894.07 xkxfmu-fQLt-DtKZ-YnkY-vwcj-JqC2-WmQddD 690 4 | -------------------------------------------------------------------------------- /resources/lvm/linux/vgs/README: -------------------------------------------------------------------------------- 1 | vgs --noheading --nosuffix --units M -o vg_name,pv_count,lv_count,vg_attr,vg_size,vg_free,vg_uuid,vg_extent_size 2 | -------------------------------------------------------------------------------- /resources/lvm/linux/vgs/linux-1: -------------------------------------------------------------------------------- 1 | lvm 1 6 wz--n- 15846.08 0 Eubwcw-UFh2-P3Kn-aI6y-qcLT-VCzU-ls49ha 4.19 2 | lvm2 2 2 wz--n- 5360.32 5150.61 ZHOqQg-SNQJ-a79U-Jfn1-Az84-e04w-d9zH23 4.19 3 | -------------------------------------------------------------------------------- /resources/lvm/linux/vgs/linux-2: -------------------------------------------------------------------------------- 1 | vg00 3 16 wz--n- 870469.07 385137.77 OFXZR2-dEjD-qVIj-VJnw-1dQY-wC57-O1TABn 33.55 2 | -------------------------------------------------------------------------------- /resources/lvm/linux/vgs/linux-3: -------------------------------------------------------------------------------- 1 | vg0 1 5 wz--n- 53791.95 18694.01 4D8fsm-J18u-IBB8-0TDT-tdIc-qDWr-COXhld 4.19 2 | vg1 2 1 wz--n- 364174.64 4.19 8VYDvK-WrSD-5v8m-UgyR-g7GR-V4hK-y7q2On 4.19 3 | -------------------------------------------------------------------------------- /resources/macos/antivirus/cortex-xdr-8.2.1.47908-info: -------------------------------------------------------------------------------- 1 | Cortex XDR (R) supervisor tool 8.2.1.47908 2 | (c) Palo Alto Networks, Inc. All rights reserved 3 | 4 | General Cortex XDR information 5 | 6 | -------------------------------------------------------------------------------- /resources/macos/antivirus/cortex-xdr-8.2.1.47908-info-query: -------------------------------------------------------------------------------- 1 | Content Type: 1270 2 | Content Build: 79108 3 | Content Version: 1270-79108 4 | Event Log: 1 5 | 6 | -------------------------------------------------------------------------------- /resources/macos/antivirus/sentinelone-epp-24.1.2.7444-version: -------------------------------------------------------------------------------- 1 | SentinelOne 24.1.2.7444 2 | -------------------------------------------------------------------------------- /resources/macos/firewall/defaults_read_preferences_com_alf_globalstate.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /resources/macos/sysctl/11.0-apple-M1: -------------------------------------------------------------------------------- 1 | machdep.cpu.cores_per_package: 8 2 | machdep.cpu.core_count: 8 3 | machdep.cpu.logical_per_package: 8 4 | machdep.cpu.thread_count: 8 5 | machdep.cpu.brand_string: Apple M1 6 | -------------------------------------------------------------------------------- /resources/solaris/dladm/oi-2021.10-e1000g0: -------------------------------------------------------------------------------- 1 | LINK MEDIA STATE SPEED DUPLEX DEVICE 2 | e1000g0 Ethernet up 1000 full e1000g0 3 | -------------------------------------------------------------------------------- /resources/solaris/dladm/oi-2021.10-e1000g0_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/solaris/dladm/oi-2021.10-e1000g0_1 -------------------------------------------------------------------------------- /resources/solaris/dladm/oi-2021.10-lo0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/solaris/dladm/oi-2021.10-lo0 -------------------------------------------------------------------------------- /resources/solaris/iostat/sample1: -------------------------------------------------------------------------------- 1 | c8t60060E80141A420000011A420000300Bd0 Soft Errors: 1 Hard Errors: 0 Transport Errors: 0 2 | Vendor: HITACHI Product: OPEN-V -SUN Revision: 5009 Serial No: 3 | Size: 64.42GB <64424509440 bytes> 4 | Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0 5 | Illegal Request: 1 Predictive Failure Analysis: 0 6 | -------------------------------------------------------------------------------- /resources/solaris/iostat/sample2: -------------------------------------------------------------------------------- 1 | sd0 Soft Errors: 0 Hard Errors: 0 Transport Errors: 0 2 | Vendor: HITACHI Product: DK32EJ72NSUN72G Revision: PQ08 Serial No: 43W14Z080040A34E 3 | Size: 73.40GB <73400057856 bytes> 4 | Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0 5 | Illegal Request: 0 Predictive Failure Analysis: 0 6 | -------------------------------------------------------------------------------- /resources/solaris/iostat/sample4-slash-char-in-model: -------------------------------------------------------------------------------- 1 | c0t3d0 Soft Errors: 0 Hard Errors: 0 Transport Errors: 0 2 | Vendor: TSSTcorp Product: CD/DVDW TS-L632D Revision: SR02 Serial No: 3 | Size: 0.00GB <0 bytes> 4 | Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0 5 | Illegal Request: 2 Predictive Failure Analysis: 0 6 | -------------------------------------------------------------------------------- /resources/solaris/kstat/sample1: -------------------------------------------------------------------------------- 1 | module: nxge instance: 0 2 | name: Port Stats class: net 3 | link_speed 1000 4 | -------------------------------------------------------------------------------- /resources/solaris/kstat/sample2: -------------------------------------------------------------------------------- 1 | module: ce instance: 0 2 | name: ce0 class: net 3 | link_speed 1000 4 | 5 | -------------------------------------------------------------------------------- /resources/solaris/kstat/sample3: -------------------------------------------------------------------------------- 1 | module: bge instance: 0 2 | name: parameters class: net 3 | link_speed 1000 4 | 5 | -------------------------------------------------------------------------------- /resources/solaris/kstat/sample4: -------------------------------------------------------------------------------- 1 | module: bge instance: 1 2 | name: parameters class: net 3 | link_speed 0 4 | -------------------------------------------------------------------------------- /resources/solaris/opensolaris/release-1: -------------------------------------------------------------------------------- 1 | OpenSolaris 2009.06 snv_111b X86 2 | Copyright 2009 Sun Microsystems, Inc. All Rights Reserved. 3 | Use is subject to license terms. 4 | Assembled 07 May 2009 5 | -------------------------------------------------------------------------------- /resources/solaris/psrinfo/oi-2021.10-psrinfo_vp: -------------------------------------------------------------------------------- 1 | The physical processor has 2 virtual processors (0-1) 2 | x86 (AuthenticAMD 870F10 family 23 model 113 step 0 clock 3823 MHz) 3 | AMD Ryzen 9 3900X 12-Core Processor [ Socket: AM4 ] 4 | -------------------------------------------------------------------------------- /resources/solaris/psrinfo/sparc-t5-psrinfo_vp: -------------------------------------------------------------------------------- 1 | The physical processor has 64 virtual processors (0-63) 2 | SPARC-T5 (chipid 0, clock 3600 MHz) 3 | -------------------------------------------------------------------------------- /resources/solaris/psrinfo/t1-psrinfo_vp: -------------------------------------------------------------------------------- 1 | The physical processor has 16 virtual processors (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15) 2 | UltraSPARC-T1 (cpuid 0 clock 1000 MHz) 3 | -------------------------------------------------------------------------------- /resources/solaris/psrinfo/t5120-psrinfo_vp: -------------------------------------------------------------------------------- 1 | The physical processor has 32 virtual processors (0-31) 2 | UltraSPARC-T2 (chipid 0, clock 1165 MHz) 3 | -------------------------------------------------------------------------------- /resources/solaris/psrinfo/unstable10s-psrinfo_vp: -------------------------------------------------------------------------------- 1 | The physical processor has 24 virtual processors (0-23) 2 | UltraSPARC-T2 (chipid 0, clock 1165 MHz) 3 | -------------------------------------------------------------------------------- /resources/solaris/psrinfo/unstable11s-psrinfo_vp: -------------------------------------------------------------------------------- 1 | The physical processor has 4 virtual processors (0-3) 2 | UltraSPARC-T2 (chipid 0, clock 1165 MHz) 3 | 4 | -------------------------------------------------------------------------------- /resources/solaris/psrinfo/unstable9s-psrinfo_vp: -------------------------------------------------------------------------------- 1 | The physical processor has 24 virtual processors (0-23) 2 | UltraSPARC-T2 (chipid 0, clock 1165 MHz) 3 | -------------------------------------------------------------------------------- /resources/solaris/psrinfo/unstable9x-psrinfo_vp: -------------------------------------------------------------------------------- 1 | The i386 physical processor has 1 virtual processor (0) 2 | The i386 physical processor has 1 virtual processor (1) 3 | The i386 physical processor has 1 virtual processor (2) 4 | The i386 physical processor has 1 virtual processor (3) 5 | -------------------------------------------------------------------------------- /resources/solaris/psrinfo/v240-psrinfo_vp: -------------------------------------------------------------------------------- 1 | The UltraSPARC-IIIi physical processor has 1 virtual processor (0) 2 | The UltraSPARC-IIIi physical processor has 1 virtual processor (1) 3 | -------------------------------------------------------------------------------- /resources/solaris/release/openindiana-151: -------------------------------------------------------------------------------- 1 | OpenIndiana Development oi_151.1.9 X86 (powered by illumos) 2 | Copyright 2011 Oracle and/or its affiliates. All rights reserved. 3 | Use is subject to license terms. 4 | Assembled 17 January 2014 5 | -------------------------------------------------------------------------------- /resources/solaris/release/sample1: -------------------------------------------------------------------------------- 1 | Solaris 10 5/09 s10s_u7wos_08 SPARC 2 | Copyright 2009 Sun Microsystems, Inc. All Rights Reserved. 3 | Use is subject to license terms. 4 | Assembled 30 March 2009 5 | -------------------------------------------------------------------------------- /resources/solaris/release/sample2: -------------------------------------------------------------------------------- 1 | Solaris 9 s9_41e SPARC 2 | Copyright 1994-2004 Sun Microsystems, Inc. All Rights Reserved. 3 | Assembled 31 July 2001 4 | -------------------------------------------------------------------------------- /resources/solaris/release/sample3: -------------------------------------------------------------------------------- 1 | Solaris 9 s9_50 SPARC 2 | Copyright 1994-2004 Sun Microsystems, Inc. All Rights Reserved. 3 | Assembled 08 November 2001 4 | -------------------------------------------------------------------------------- /resources/solaris/release/sample4: -------------------------------------------------------------------------------- 1 | Solaris 8 2/02 s28s_u7wos_08a SPARC 2 | Copyright 1994-2004 Sun Microsystems, Inc. All Rights Reserved. 3 | Assembled 18 December 2001 4 | -------------------------------------------------------------------------------- /resources/solaris/release/sample5: -------------------------------------------------------------------------------- 1 | Solaris 9 9/05 s9s_u8wos_05 SPARC 2 | Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. 3 | Use is subject to license terms. 4 | Assembled 04 August 2005 5 | 6 | -------------------------------------------------------------------------------- /resources/solaris/release/sample6: -------------------------------------------------------------------------------- 1 | Solaris 10 3/05 s10_74L2a SPARC 2 | Copyright 2005 Sun Microsystems, Inc. All Rights 3 | Use is subject to license terms. 4 | Assembled 22 January 2005 5 | -------------------------------------------------------------------------------- /resources/solaris/release/sample7: -------------------------------------------------------------------------------- 1 | Oracle Solaris 10 1/13 s10s_u11wos_24a SPARC 2 | Copyright (c) 1983, 2013, Oracle and/or its affiliates. All rights reserved. 3 | Assembled 17 January 2013 4 | -------------------------------------------------------------------------------- /resources/solaris/release/sample8: -------------------------------------------------------------------------------- 1 | Oracle Solaris 10 8/11 s10s_u10wos_17b SPARC 2 | Copyright (c) 1983, 2011, Oracle and/or its affiliates. All rights reserved. 3 | Assembled 23 August 2011 4 | -------------------------------------------------------------------------------- /resources/solaris/showrev/SPARC-1: -------------------------------------------------------------------------------- 1 | Hostname: 157501s021plc 2 | Hostid: 83249bbf 3 | Release: 5.10 4 | Kernel architecture: sun4u 5 | Application architecture: sparc 6 | Hardware provider: Sun_Microsystem 7 | Domain: be.cnamts.fr 8 | Kernel version: SunOS 5.10 Generic_118833-17 9 | -------------------------------------------------------------------------------- /resources/solaris/showrev/SPARC-2: -------------------------------------------------------------------------------- 1 | Hostname: mysunserver 2 | Hostid: mabox 3 | Release: 5.10 4 | Kernel architecture: sun4v 5 | Application architecture: sparc 6 | Hardware provider: Sun_Microsystems 7 | Domain: 8 | Kernel version: SunOS 5.10 Generic_125100-06 9 | -------------------------------------------------------------------------------- /resources/solaris/showrev/x86-1: -------------------------------------------------------------------------------- 1 | Hostname: stlaurent 2 | Hostid: 403100b 3 | Release: 5.10 4 | Kernel architecture: i86pc 5 | Application architecture: i386 6 | Hardware provider: 7 | Domain: 8 | Kernel version: SunOS 5.10 Generic_127112-07 9 | -------------------------------------------------------------------------------- /resources/solaris/showrev/x86-2: -------------------------------------------------------------------------------- 1 | Hostname: mamachine 2 | Hostid: 7c31a88 3 | Release: 5.10 4 | Kernel architecture: i86pc 5 | Application architecture: i386 6 | Hardware provider: 7 | Domain: 8 | Kernel version: SunOS 5.10 Generic_144489-03 9 | -------------------------------------------------------------------------------- /resources/solaris/showrev/x86-3: -------------------------------------------------------------------------------- 1 | Hostname: plop 2 | Hostid: 7c31a36 3 | Release: 5.10 4 | Kernel architecture: i86pc 5 | Application architecture: i386 6 | Hardware provider: 7 | Domain: 8 | Kernel version: SunOS 5.10 Generic_147441-09 9 | -------------------------------------------------------------------------------- /resources/solaris/smbios/x86-1: -------------------------------------------------------------------------------- 1 | ID SIZE TYPE 2 | 1 76 SMB_TYPE_SYSTEM (system information) 3 | 4 | Manufacturer: Sun Microsystems, Inc. 5 | Product: Sun Fire V40z 6 | Version: 00 7 | Serial Number: R00T34E0009 8 | 9 | UUID: be1630df-d130-41a4-be32-fd28bb4bd1ac 10 | Wake-Up Event: 0x6 (power switch) 11 | SKU Number: 12 | Family: 13 | -------------------------------------------------------------------------------- /resources/solaris/virtinfo/solaris: -------------------------------------------------------------------------------- 1 | Domain UUID: 915fbcf6-2b64-48ba-9b7b-05df341428be 2 | -------------------------------------------------------------------------------- /resources/ssl/README: -------------------------------------------------------------------------------- 1 | Certificate creation: 2 | openssl req -new -keyout key/foo.pem -out foo.csr -config cnf/foo.cnf 3 | 4 | Certificate signature: 5 | openssl ca -config cnf/ca.cnf -in foo.csr -out crt/foo.pem 6 | -------------------------------------------------------------------------------- /resources/virtualization/README: -------------------------------------------------------------------------------- 1 | virtualization-related commands output 2 | 3 | vboxmanage: VBoxManage command output 4 | - sample?: VBoxManage -nologo list--long vms 5 | -------------------------------------------------------------------------------- /resources/virtualization/lxc/200-proxmox: -------------------------------------------------------------------------------- 1 | # lxc-info -n 200 -s -c lxc.cgroup.memory.limit_in_bytes -c lxc.cgroup.cpuset.cpus -c lxc.net.0.hwaddr -c lxc.uts.name 2 | State: RUNNING 3 | lxc.cgroup.memory.limit_in_bytes = 2147483648 4 | 5 | lxc.cgroup.cpuset.cpus = 0,2 6 | 7 | lxc.net.0.hwaddr = FA:EE:26:EF:6B:1C 8 | lxc.uts.name = glpi-10-rc1 9 | -------------------------------------------------------------------------------- /resources/virtualization/lxc/arch-linux: -------------------------------------------------------------------------------- 1 | # lxc-info -n arch-linux -s -c lxc.cgroup.memory.limit_in_bytes -c lxc.cgroup.cpuset.cpus -c lxc.net.0.hwaddr 2 | State: STOPPED 3 | lxc.cgroup.memory.limit_in_bytes = 4 | lxc.cgroup.cpuset.cpus = 0,3-4 5 | lxc.net.0.hwaddr = 00:16:3e:1f:0b:1d 6 | -------------------------------------------------------------------------------- /resources/virtualization/lxc/debian-hosting: -------------------------------------------------------------------------------- 1 | # lxc-info -n debian-hosting -s 2 | State: RUNNING 3 | 4 | # lxc-info -n debian-hosting -c lxc.cgroup.memory.limit_in_bytes -c lxc.cgroup.cpuset.cpus -c lxc.net.0.hwaddr 5 | lxc.cgroup.memory.limit_in_bytes = 6 | lxc.cgroup.cpuset.cpus = 7 | lxc.net.0.hwaddr = 00:16:3e:c3:52:e4 8 | -------------------------------------------------------------------------------- /resources/virtualization/lxc/lxc-info_-n_name1: -------------------------------------------------------------------------------- 1 | state: RUNNING 2 | pid: 13018 3 | -------------------------------------------------------------------------------- /resources/virtualization/lxc/lxc-info_-n_name2: -------------------------------------------------------------------------------- 1 | Name: os-ci-test14 2 | State: RUNNING 3 | PID: 5790 4 | IP: 192.168.134.58 5 | Memory use: 44.97 MiB 6 | Link: vethN3BPJA 7 | TX bytes: 2.10 MiB 8 | RX bytes: 6.53 MiB 9 | Total bytes: 8.63 MiB 10 | -------------------------------------------------------------------------------- /resources/virtualization/prlctl/sample1: -------------------------------------------------------------------------------- 1 | UUID STATUS IP_ADDR NAME 2 | {bc993872-c70f-40bf-b2e2-94d9f080eb55} stopped - Ubuntu Linux 3 | -------------------------------------------------------------------------------- /resources/virtualization/virsh/list2: -------------------------------------------------------------------------------- 1 | Id Name State 2 | ---------------------------------- 3 | 6 Debian_Squeeze_64_bits running 4 | 5 | -------------------------------------------------------------------------------- /resources/virtualization/virtuozzo/sample1: -------------------------------------------------------------------------------- 1 | vz1.mydomain.com 101 0 running debian-8.0-x86_64-minimal 2 | vz2.mydomain.com 102 0 running debian-8.0-x86_64-minimal 3 | vz3.mydomain.com 103 0 running debian-8.0-x86_64-minimal 4 | vz4.mydomain.com 104 0 stopped debian-8.0-x86_64-minimal 5 | -------------------------------------------------------------------------------- /resources/virtualization/virtuozzo/sample1-ctid-conf: -------------------------------------------------------------------------------- 1 | PRIVVMPAGES="unlimited" 2 | PRIVVMPAGES="1024000000:2048000000" 3 | PHYSPAGES="1G:1.5G" 4 | -------------------------------------------------------------------------------- /resources/virtualization/virtuozzo/sample1-getmac-101: -------------------------------------------------------------------------------- 1 | 1: lo: mtu 65536 qdisc noqueue state UNKNOWN 2 | link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 3 | 2: venet0: mtu 1500 qdisc noqueue state UNKNOWN 4 | link/void 5 | -------------------------------------------------------------------------------- /resources/virtualization/virtuozzo/sample1-getmac-102: -------------------------------------------------------------------------------- 1 | 1: lo: mtu 65536 qdisc noqueue state UNKNOWN 2 | link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 3 | 2: venet0: mtu 1500 qdisc noqueue state UNKNOWN 4 | link/void 5 | -------------------------------------------------------------------------------- /resources/virtualization/xe/xe_none: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /resources/virtualization/xm/xl_list: -------------------------------------------------------------------------------- 1 | Name ID Mem VCPUs State Time(s) 2 | Domain-0 0 512 48 r----- 1655498.2 3 | vm1 4 20480 4 -b---- 1415311.0 4 | vm2 11 4096 2 -b---- 175634.0 5 | -------------------------------------------------------------------------------- /resources/virtualization/xm/xl_list_-v_vmname: -------------------------------------------------------------------------------- 1 | Name ID Mem VCPUs State Time(s) UUID Reason-Code Security Label 2 | vm1 11 4096 2 -b---- 175637.0 482e6c75-090e-4cf2-9c06-de39c824cbe4 - - 3 | -------------------------------------------------------------------------------- /resources/walks/sample5.walk: -------------------------------------------------------------------------------- 1 | iso.3.6.1.2.1.1.1.0 = STRING: "H3C Comware Platform Software, Software Version 5.20 Release 2208 2 | H3C S5500-52C-EI 3 | Copyright (c) 2004-2010 Hangzhou H3C Tech. Co., Ltd. All rights reserved." 4 | iso.3.6.1.2.1.1.2.0 = OID: iso.3.6.1.4.1.25506.1.2 5 | iso.3.6.1.2.1.1.3.0 = Timeticks: (199049804) 23 days, 0:54:58.04 6 | 7 | -------------------------------------------------------------------------------- /resources/walks/sample6.walk: -------------------------------------------------------------------------------- 1 | .1.3.6.1.2.1.25.2.3.1.5.1 = INTEGER: 2089255 2 | .1.3.6.1.2.1.25.2.2.0 = INTEGER: 8357020 3 | .1.3.6.1.4.1.2021.4.5.0 = INTEGER: 8357020 -------------------------------------------------------------------------------- /resources/win32/.gitattributes: -------------------------------------------------------------------------------- 1 | # prevent any eol normalization 2 | *.reg -text 3 | *.wmi -text 4 | -------------------------------------------------------------------------------- /resources/win32/registry/10-DNSRegisteredAdapters.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/10-DNSRegisteredAdapters.reg -------------------------------------------------------------------------------- /resources/win32/registry/10-DomainProfile.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/10-DomainProfile.reg -------------------------------------------------------------------------------- /resources/win32/registry/10-Interfaces.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/10-Interfaces.reg -------------------------------------------------------------------------------- /resources/win32/registry/10-NetworkList.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/10-NetworkList.reg -------------------------------------------------------------------------------- /resources/win32/registry/10-PublicProfile.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/10-PublicProfile.reg -------------------------------------------------------------------------------- /resources/win32/registry/10-StandAlone-LogonUI.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/10-StandAlone-LogonUI.reg -------------------------------------------------------------------------------- /resources/win32/registry/10-StandardProfile.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/10-StandardProfile.reg -------------------------------------------------------------------------------- /resources/win32/registry/10_russian-Uninstall.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/10_russian-Uninstall.reg -------------------------------------------------------------------------------- /resources/win32/registry/11-AzureAD-LogonUI.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/11-AzureAD-LogonUI.reg -------------------------------------------------------------------------------- /resources/win32/registry/11-AzureAD-S-1-12-1-1778064242-1251273316-772277320-2482684374.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/11-AzureAD-S-1-12-1-1778064242-1251273316-772277320-2482684374.reg -------------------------------------------------------------------------------- /resources/win32/registry/2003-CentralProcessor.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/2003-CentralProcessor.reg -------------------------------------------------------------------------------- /resources/win32/registry/2003R2-Hotfix-CentralProcessor.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/2003R2-Hotfix-CentralProcessor.reg -------------------------------------------------------------------------------- /resources/win32/registry/2003SP2-CentralProcessor.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/2003SP2-CentralProcessor.reg -------------------------------------------------------------------------------- /resources/win32/registry/2008-with-2-different-cpus-CentralProcessor.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/2008-with-2-different-cpus-CentralProcessor.reg -------------------------------------------------------------------------------- /resources/win32/registry/2019-amd-epyc-CentralProcessor.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/2019-amd-epyc-CentralProcessor.reg -------------------------------------------------------------------------------- /resources/win32/registry/7-AD-LogonUI.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7-AD-LogonUI.reg -------------------------------------------------------------------------------- /resources/win32/registry/7-CentralProcessor.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7-CentralProcessor.reg -------------------------------------------------------------------------------- /resources/win32/registry/7-Network.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7-Network.reg -------------------------------------------------------------------------------- /resources/win32/registry/7-USB.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7-USB.reg -------------------------------------------------------------------------------- /resources/win32/registry/7-USBPRINT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7-USBPRINT.reg -------------------------------------------------------------------------------- /resources/win32/registry/7_firewall-DNSRegisteredAdapters.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7_firewall-DNSRegisteredAdapters.reg -------------------------------------------------------------------------------- /resources/win32/registry/7_firewall-DomainProfile.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7_firewall-DomainProfile.reg -------------------------------------------------------------------------------- /resources/win32/registry/7_firewall-Interfaces.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7_firewall-Interfaces.reg -------------------------------------------------------------------------------- /resources/win32/registry/7_firewall-NetworkList.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7_firewall-NetworkList.reg -------------------------------------------------------------------------------- /resources/win32/registry/7_firewall-PublicProfile.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7_firewall-PublicProfile.reg -------------------------------------------------------------------------------- /resources/win32/registry/7_firewall-StandardProfile.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7_firewall-StandardProfile.reg -------------------------------------------------------------------------------- /resources/win32/registry/7bis-USB.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7bis-USB.reg -------------------------------------------------------------------------------- /resources/win32/registry/7bis-USBPRINT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7bis-USBPRINT.reg -------------------------------------------------------------------------------- /resources/win32/registry/7ter-USB.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7ter-USB.reg -------------------------------------------------------------------------------- /resources/win32/registry/7ter-USBPRINT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/7ter-USBPRINT.reg -------------------------------------------------------------------------------- /resources/win32/registry/amd-radeon-rx6600xt-{4d36e968-e325-11ce-bfc1-08002be10318}.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/amd-radeon-rx6600xt-{4d36e968-e325-11ce-bfc1-08002be10318}.reg -------------------------------------------------------------------------------- /resources/win32/registry/hp-printer-USB.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/hp-printer-USB.reg -------------------------------------------------------------------------------- /resources/win32/registry/hp-printer-USBPRINT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/hp-printer-USBPRINT.reg -------------------------------------------------------------------------------- /resources/win32/registry/intel+nvidia-{4d36e968-e325-11ce-bfc1-08002be10318}.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/intel+nvidia-{4d36e968-e325-11ce-bfc1-08002be10318}.reg -------------------------------------------------------------------------------- /resources/win32/registry/intel-hd-graphics-{4d36e968-e325-11ce-bfc1-08002be10318}.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/intel-hd-graphics-{4d36e968-e325-11ce-bfc1-08002be10318}.reg -------------------------------------------------------------------------------- /resources/win32/registry/mssql-SQL.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/mssql-SQL.reg -------------------------------------------------------------------------------- /resources/win32/registry/mssql-Setup.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/mssql-Setup.reg -------------------------------------------------------------------------------- /resources/win32/registry/mssql-Uninstall.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/mssql-Uninstall.reg -------------------------------------------------------------------------------- /resources/win32/registry/mssql_engine-SQL.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/mssql_engine-SQL.reg -------------------------------------------------------------------------------- /resources/win32/registry/mssql_engine-Setup.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/mssql_engine-Setup.reg -------------------------------------------------------------------------------- /resources/win32/registry/mssql_engine-Uninstall.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/mssql_engine-Uninstall.reg -------------------------------------------------------------------------------- /resources/win32/registry/nvidia-geforce-rtx-2060-super-{4d36e968-e325-11ce-bfc1-08002be10318}.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/nvidia-geforce-rtx-2060-super-{4d36e968-e325-11ce-bfc1-08002be10318}.reg -------------------------------------------------------------------------------- /resources/win32/registry/office_2010_1.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/office_2010_1.reg -------------------------------------------------------------------------------- /resources/win32/registry/office_2010_2.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/office_2010_2.reg -------------------------------------------------------------------------------- /resources/win32/registry/office_2016_01.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/office_2016_01.reg -------------------------------------------------------------------------------- /resources/win32/registry/office_2016_02.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/office_2016_02.reg -------------------------------------------------------------------------------- /resources/win32/registry/xp-CentralProcessor.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/xp-CentralProcessor.reg -------------------------------------------------------------------------------- /resources/win32/registry/xp-Uninstall.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/xp-Uninstall.reg -------------------------------------------------------------------------------- /resources/win32/registry/xp-{4D36E972-E325-11CE-BFC1-08002BE10318}.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/xp-{4D36E972-E325-11CE-BFC1-08002BE10318}.reg -------------------------------------------------------------------------------- /resources/win32/registry/xppro1-USB.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/xppro1-USB.reg -------------------------------------------------------------------------------- /resources/win32/registry/xppro1-USBPRINT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/xppro1-USBPRINT.reg -------------------------------------------------------------------------------- /resources/win32/registry/xppro2-USB.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/xppro2-USB.reg -------------------------------------------------------------------------------- /resources/win32/registry/xppro2-USBPRINT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/registry/xppro2-USBPRINT.reg -------------------------------------------------------------------------------- /resources/win32/wmi/10-StandAlone-Win32_UserAccount.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/10-StandAlone-Win32_UserAccount.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/10-Win32_NetworkAdapter.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/10-Win32_NetworkAdapter.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/10-Win32_NetworkAdapterConfiguration.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/10-Win32_NetworkAdapterConfiguration.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/10-net-MSFT_NetAdapter.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/10-net-MSFT_NetAdapter.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/10-net-Win32_NetworkAdapter.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/10-net-Win32_NetworkAdapter.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/10-net-Win32_NetworkAdapterConfiguration.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/10-net-Win32_NetworkAdapterConfiguration.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/11-AzureAD-Win32_ComputerSystem.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/11-AzureAD-Win32_ComputerSystem.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2003-Win32_PhysicalMemory.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2003-Win32_PhysicalMemory.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2003-Win32_PhysicalMemoryArray.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2003-Win32_PhysicalMemoryArray.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2003-Win32_Processor.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2003-Win32_Processor.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2003R2-Hotfix-Win32_Processor.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2003R2-Hotfix-Win32_Processor.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2003SP2-Win32_PhysicalMemory.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2003SP2-Win32_PhysicalMemory.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2003SP2-Win32_PhysicalMemoryArray.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2003SP2-Win32_PhysicalMemoryArray.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2003SP2-Win32_Processor.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2003SP2-Win32_Processor.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2008-Enterprise-Win32_DiskDrive.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2008-Enterprise-Win32_DiskDrive.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2008-Enterprise-Win32_LogicalDisk.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2008-Enterprise-Win32_LogicalDisk.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2008-Enterprise-Win32_OperatingSystem.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2008-Enterprise-Win32_OperatingSystem.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2008-MSVM_ComputerSystem.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2008-MSVM_ComputerSystem.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2008-MSVM_MemorySettingData.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2008-MSVM_MemorySettingData.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2008-MSVM_ProcessorSettingData.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2008-MSVM_ProcessorSettingData.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2008-with-2-different-cpus-Win32_Processor.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2008-with-2-different-cpus-Win32_Processor.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/2019-amd-epyc-Win32_Processor.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/2019-amd-epyc-Win32_Processor.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/7-AD-Win32_UserAccount.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/7-AD-Win32_UserAccount.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/7-CIM_LogicalDevice.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/7-CIM_LogicalDevice.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/7-Win32_NetworkAdapter.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/7-Win32_NetworkAdapter.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/7-Win32_NetworkAdapterConfiguration.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/7-Win32_NetworkAdapterConfiguration.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/7-Win32_PhysicalMemory.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/7-Win32_PhysicalMemory.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/7-Win32_PhysicalMemoryArray.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/7-Win32_PhysicalMemoryArray.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/7-Win32_Processor.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/7-Win32_Processor.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/7_firewall-Win32_NetworkAdapter.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/7_firewall-Win32_NetworkAdapter.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/7_firewall-Win32_NetworkAdapterConfiguration.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/7_firewall-Win32_NetworkAdapterConfiguration.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/bar-code-scanner-CIM_LogicalDevice.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/bar-code-scanner-CIM_LogicalDevice.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/intel+nvidia-Win32_VideoController.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/intel+nvidia-Win32_VideoController.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/latitude-7480-MSFT_PhysicalDisk.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/latitude-7480-MSFT_PhysicalDisk.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/latitude-7480-Win32_DiskDrive.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/latitude-7480-Win32_DiskDrive.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/nvidia-geforce-rtx-2060-super-Win32_VideoController.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/nvidia-geforce-rtx-2060-super-Win32_VideoController.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/office_2016_01-SoftwareLicensingProduct.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/office_2016_01-SoftwareLicensingProduct.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/proxmox-Win32_Bios.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/proxmox-Win32_Bios.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/proxmox-Win32_ComputerSystem.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/proxmox-Win32_ComputerSystem.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/unknown-MSVM_ComputerSystem.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/unknown-MSVM_ComputerSystem.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/vpn-down-MSFT_NetAdapter.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/vpn-down-MSFT_NetAdapter.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/vpn-down-Win32_NetworkAdapter.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/vpn-down-Win32_NetworkAdapter.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/vpn-down-Win32_NetworkAdapterConfiguration.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/vpn-down-Win32_NetworkAdapterConfiguration.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/vpn-up-MSFT_NetAdapter.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/vpn-up-MSFT_NetAdapter.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/vpn-up-Win32_NetworkAdapter.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/vpn-up-Win32_NetworkAdapter.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/vpn-up-Win32_NetworkAdapterConfiguration.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/vpn-up-Win32_NetworkAdapterConfiguration.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/win10-crypt-Win32_DiskDrive.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/win10-crypt-Win32_DiskDrive.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/win10-crypt-Win32_EncryptableVolume.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/win10-crypt-Win32_EncryptableVolume.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/win10-crypt-Win32_LogicalDisk.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/win10-crypt-Win32_LogicalDisk.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/win10-crypt-Win32_Volume.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/win10-crypt-Win32_Volume.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/win10-edu-2020-fr-MSFT_PhysicalDisk.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/win10-edu-2020-fr-MSFT_PhysicalDisk.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/win10-edu-2020-fr-Win32_CDROMDrive.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/win10-edu-2020-fr-Win32_CDROMDrive.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/win7-sp1-x64-Win32_DiskDrive.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/win7-sp1-x64-Win32_DiskDrive.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/win7-sp1-x64-Win32_LogicalDisk.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/win7-sp1-x64-Win32_LogicalDisk.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/win7-sp1-x64-Win32_OperatingSystem.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/win7-sp1-x64-Win32_OperatingSystem.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/win7-sp1-x64-Win32_Volume.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/win7-sp1-x64-Win32_Volume.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/winxp-sp3-x86-Win32_LogicalDisk.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/winxp-sp3-x86-Win32_LogicalDisk.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/winxp-sp3-x86-Win32_OperatingSystem.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/winxp-sp3-x86-Win32_OperatingSystem.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/xp-Win32_NetworkAdapter.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/xp-Win32_NetworkAdapter.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/xp-Win32_NetworkAdapterConfiguration.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/xp-Win32_NetworkAdapterConfiguration.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/xp-Win32_PhysicalMemory.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/xp-Win32_PhysicalMemory.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/xp-Win32_PhysicalMemoryArray.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/xp-Win32_PhysicalMemoryArray.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/xp-Win32_Processor.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/xp-Win32_Processor.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/xp-Win32_QuickFixEngineering.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/xp-Win32_QuickFixEngineering.wmi -------------------------------------------------------------------------------- /resources/win32/wmi/xppro2-CIM_LogicalDevice.wmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/resources/win32/wmi/xppro2-CIM_LogicalDevice.wmi -------------------------------------------------------------------------------- /share/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/share/html/favicon.ico -------------------------------------------------------------------------------- /share/html/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/share/html/logo.png -------------------------------------------------------------------------------- /share/html/toolbox/errors.tpl: -------------------------------------------------------------------------------- 1 | { @errors ? " 2 |
3 |

4 | "._("ERROR")." ! ".join("
\n"._("ERROR")." ! ", map { 5 | join(": ", map { _($_) } split(": ", $_)) 6 | } @errors)." 7 |

8 |
" : "" } 9 | -------------------------------------------------------------------------------- /share/html/toolbox/fonts/tabler-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/share/html/toolbox/fonts/tabler-icons.eot -------------------------------------------------------------------------------- /share/html/toolbox/fonts/tabler-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/share/html/toolbox/fonts/tabler-icons.ttf -------------------------------------------------------------------------------- /share/html/toolbox/fonts/tabler-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/share/html/toolbox/fonts/tabler-icons.woff -------------------------------------------------------------------------------- /share/html/toolbox/fonts/tabler-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/share/html/toolbox/fonts/tabler-icons.woff2 -------------------------------------------------------------------------------- /share/html/toolbox/home.tpl: -------------------------------------------------------------------------------- 1 |

2 |

3 | -------------------------------------------------------------------------------- /share/html/toolbox/infos-language-en.txt: -------------------------------------------------------------------------------- 1 | # This file is not read but should reference any string that could be translated 2 | 3 | INFO: 4 | 5 | New credential: 6 | Credential update: 7 | No password for ssh remote inventory type involves you installed public key authentication: 8 | -------------------------------------------------------------------------------- /share/html/toolbox/infos.tpl: -------------------------------------------------------------------------------- 1 | { @infos ? " 2 |
3 |

4 | "._("INFO")." ! ".join("
\n"._("INFO")." ! ", map { 5 | join(": ", map { _($_) } split(": ", $_)) 6 | } @infos)." 7 |

8 |
" : "" } 9 | -------------------------------------------------------------------------------- /share/html/toolbox/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/share/html/toolbox/logo.png -------------------------------------------------------------------------------- /share/html/toolbox/mibsupport-infos.tpl: -------------------------------------------------------------------------------- 1 | { 2 | my $file = "mibsupport-infos-en.tpl"; 3 | $file = "mibsupport-infos-$lang.tpl" if -e "$template_path/mibsupport-infos-$lang.tpl"; 4 | Text::Template::fill_in_file("$template_path/$file", HASH => $hash) 5 | || "Error loading $file template: $Text::Template::ERROR"; 6 | } 7 | -------------------------------------------------------------------------------- /share/usb.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glpi-project/glpi-agent/78aa6493e0ed428616c155c81a07ef46097646b0/share/usb.ids -------------------------------------------------------------------------------- /t/09cpanmeta.t: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | use strict; 4 | use warnings; 5 | 6 | use Test::More; 7 | use UNIVERSAL::require; 8 | 9 | plan(skip_all => 'Test::CPAN::Meta required') 10 | unless Test::CPAN::Meta->require(); 11 | 12 | Test::CPAN::Meta->import(); 13 | 14 | meta_yaml_ok(); 15 | -------------------------------------------------------------------------------- /t/lib/GLPI/Test/Module.pm: -------------------------------------------------------------------------------- 1 | package GLPI::Test::Module; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | sub mirror { 7 | return $_[0]; 8 | } 9 | 10 | sub loop { 11 | while (1) {}; 12 | } 13 | 14 | 1; 15 | -------------------------------------------------------------------------------- /t/lib/fake/windows/Win32.pm: -------------------------------------------------------------------------------- 1 | package Win32; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /t/lib/fake/windows/Win32/API.pm: -------------------------------------------------------------------------------- 1 | package Win32::API; 2 | 3 | 1; 4 | -------------------------------------------------------------------------------- /t/lib/fake/windows/Win32/Job.pm: -------------------------------------------------------------------------------- 1 | package Win32::Job; 2 | 3 | use strict; 4 | use warnings; 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /t/perlcriticrc: -------------------------------------------------------------------------------- 1 | exclude = ProhibitAccessOfPrivateData ProhibitThreeArgumentOpen 2 | include = ClassHierarchies ProhibitCommaSeparatedStatements ProhibitMultiplePackages 3 | --------------------------------------------------------------------------------