facter 2.0.1.rc1-universal-darwin
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of facter might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/COMMITTERS.md +194 -0
- data/CONTRIBUTING.md +65 -0
- data/Gemfile +43 -0
- data/LICENSE +15 -0
- data/README.md +33 -0
- data/Rakefile +79 -0
- data/bin/facter +16 -0
- data/etc/facter.conf +5 -0
- data/ext/build_defaults.yaml +24 -0
- data/ext/debian/changelog.erb +59 -0
- data/ext/debian/compat +1 -0
- data/ext/debian/control +14 -0
- data/ext/debian/copyright +19 -0
- data/ext/debian/docs +1 -0
- data/ext/debian/lintian-overrides +0 -0
- data/ext/debian/rules +10 -0
- data/ext/debian/source/format +1 -0
- data/ext/facter-diff +74 -0
- data/ext/ips/facter.p5m.erb +10 -0
- data/ext/ips/rules +7 -0
- data/ext/ips/transforms +18 -0
- data/ext/osx/file_mapping.yaml +27 -0
- data/ext/osx/preflight.erb +33 -0
- data/ext/osx/prototype.plist.erb +38 -0
- data/ext/project_data.yaml +33 -0
- data/ext/redhat/facter.spec.erb +220 -0
- data/ext/solaris/pkginfo +7 -0
- data/install.rb +380 -0
- data/lib/facter.rb +262 -0
- data/lib/facter/Cfkey.rb +42 -0
- data/lib/facter/application.rb +204 -0
- data/lib/facter/architecture.rb +50 -0
- data/lib/facter/augeasversion.rb +28 -0
- data/lib/facter/blockdevices.rb +105 -0
- data/lib/facter/core/aggregate.rb +220 -0
- data/lib/facter/core/directed_graph.rb +46 -0
- data/lib/facter/core/execution.rb +100 -0
- data/lib/facter/core/execution/base.rb +73 -0
- data/lib/facter/core/execution/posix.rb +50 -0
- data/lib/facter/core/execution/windows.rb +57 -0
- data/lib/facter/core/logging.rb +169 -0
- data/lib/facter/core/resolvable.rb +94 -0
- data/lib/facter/core/suitable.rb +117 -0
- data/lib/facter/domain.rb +99 -0
- data/lib/facter/ec2.rb +37 -0
- data/lib/facter/facterversion.rb +15 -0
- data/lib/facter/filesystems.rb +38 -0
- data/lib/facter/fqdn.rb +22 -0
- data/lib/facter/hardwareisa.rb +20 -0
- data/lib/facter/hardwaremodel.rb +67 -0
- data/lib/facter/hostname.rb +33 -0
- data/lib/facter/id.rb +21 -0
- data/lib/facter/interfaces.rb +46 -0
- data/lib/facter/ipaddress.rb +171 -0
- data/lib/facter/ipaddress6.rb +82 -0
- data/lib/facter/iphostnumber.rb +29 -0
- data/lib/facter/kernel.rb +22 -0
- data/lib/facter/kernelmajversion.rb +15 -0
- data/lib/facter/kernelrelease.rb +42 -0
- data/lib/facter/kernelversion.rb +22 -0
- data/lib/facter/ldom.rb +47 -0
- data/lib/facter/lsbdistcodename.rb +18 -0
- data/lib/facter/lsbdistdescription.rb +21 -0
- data/lib/facter/lsbdistid.rb +18 -0
- data/lib/facter/lsbdistrelease.rb +18 -0
- data/lib/facter/lsbmajdistrelease.rb +27 -0
- data/lib/facter/lsbrelease.rb +18 -0
- data/lib/facter/macaddress.rb +97 -0
- data/lib/facter/macosx.rb +56 -0
- data/lib/facter/manufacturer.rb +68 -0
- data/lib/facter/memory.rb +162 -0
- data/lib/facter/netmask.rb +42 -0
- data/lib/facter/network.rb +20 -0
- data/lib/facter/operatingsystem.rb +121 -0
- data/lib/facter/operatingsystemmajrelease.rb +33 -0
- data/lib/facter/operatingsystemrelease.rb +226 -0
- data/lib/facter/osfamily.rb +35 -0
- data/lib/facter/path.rb +14 -0
- data/lib/facter/physicalprocessorcount.rb +84 -0
- data/lib/facter/processor.rb +183 -0
- data/lib/facter/ps.rb +30 -0
- data/lib/facter/puppetversion.rb +20 -0
- data/lib/facter/rubysitedir.rb +12 -0
- data/lib/facter/rubyversion.rb +12 -0
- data/lib/facter/selinux.rb +99 -0
- data/lib/facter/ssh.rb +72 -0
- data/lib/facter/timezone.rb +14 -0
- data/lib/facter/uniqueid.rb +4 -0
- data/lib/facter/uptime.rb +34 -0
- data/lib/facter/uptime_days.rb +15 -0
- data/lib/facter/uptime_hours.rb +15 -0
- data/lib/facter/uptime_seconds.rb +24 -0
- data/lib/facter/util/architecture.rb +19 -0
- data/lib/facter/util/collection.rb +161 -0
- data/lib/facter/util/composite_loader.rb +12 -0
- data/lib/facter/util/config.rb +61 -0
- data/lib/facter/util/confine.rb +66 -0
- data/lib/facter/util/directory_loader.rb +83 -0
- data/lib/facter/util/ec2.rb +101 -0
- data/lib/facter/util/fact.rb +204 -0
- data/lib/facter/util/file_read.rb +37 -0
- data/lib/facter/util/formatter.rb +38 -0
- data/lib/facter/util/ip.rb +285 -0
- data/lib/facter/util/ip/windows.rb +215 -0
- data/lib/facter/util/loader.rb +146 -0
- data/lib/facter/util/macaddress.rb +43 -0
- data/lib/facter/util/macosx.rb +73 -0
- data/lib/facter/util/manufacturer.rb +104 -0
- data/lib/facter/util/memory.rb +228 -0
- data/lib/facter/util/monkey_patches.rb +8 -0
- data/lib/facter/util/netmask.rb +40 -0
- data/lib/facter/util/normalization.rb +94 -0
- data/lib/facter/util/nothing_loader.rb +12 -0
- data/lib/facter/util/parser.rb +158 -0
- data/lib/facter/util/plist.rb +24 -0
- data/lib/facter/util/plist/generator.rb +228 -0
- data/lib/facter/util/plist/parser.rb +226 -0
- data/lib/facter/util/processor.rb +291 -0
- data/lib/facter/util/registry.rb +11 -0
- data/lib/facter/util/resolution.rb +152 -0
- data/lib/facter/util/solaris_zones.rb +158 -0
- data/lib/facter/util/unix_root.rb +5 -0
- data/lib/facter/util/uptime.rb +81 -0
- data/lib/facter/util/values.rb +80 -0
- data/lib/facter/util/virtual.rb +151 -0
- data/lib/facter/util/vlans.rb +24 -0
- data/lib/facter/util/windows_root.rb +37 -0
- data/lib/facter/util/wmi.rb +16 -0
- data/lib/facter/util/xendomains.rb +10 -0
- data/lib/facter/version.rb +86 -0
- data/lib/facter/virtual.rb +262 -0
- data/lib/facter/vlans.rb +17 -0
- data/lib/facter/xendomains.rb +20 -0
- data/lib/facter/zfs_version.rb +10 -0
- data/lib/facter/zonename.rb +6 -0
- data/lib/facter/zones.rb +17 -0
- data/lib/facter/zpool_version.rb +10 -0
- data/spec/fixtures/cpuinfo/amd64dual +57 -0
- data/spec/fixtures/cpuinfo/amd64quad +79 -0
- data/spec/fixtures/cpuinfo/amd64solo +23 -0
- data/spec/fixtures/cpuinfo/amd64tri +86 -0
- data/spec/fixtures/cpuinfo/amd64twentyfour +600 -0
- data/spec/fixtures/cpuinfo/bbg3-armel +12 -0
- data/spec/fixtures/cpuinfo/beaglexm-armel +12 -0
- data/spec/fixtures/cpuinfo/panda-armel +17 -0
- data/spec/fixtures/cpuinfo/ppc64 +19 -0
- data/spec/fixtures/cpuinfo/sparc +10 -0
- data/spec/fixtures/hpux/machinfo/hppa-rp4440 +26 -0
- data/spec/fixtures/hpux/machinfo/ia64-rx2620 +49 -0
- data/spec/fixtures/hpux/machinfo/ia64-rx6600 +26 -0
- data/spec/fixtures/hpux/machinfo/ia64-rx8640 +53 -0
- data/spec/fixtures/hpux/machinfo/superdome-server-SD32B +53 -0
- data/spec/fixtures/hpux/machinfo/superdome2-16s +31 -0
- data/spec/fixtures/hpux/sched.models +174 -0
- data/spec/fixtures/hpux/unistd.h +1534 -0
- data/spec/fixtures/ifconfig/bsd_ifconfig_all_with_multiple_interfaces +18 -0
- data/spec/fixtures/ifconfig/centos_5_5 +17 -0
- data/spec/fixtures/ifconfig/centos_5_5_eth0 +8 -0
- data/spec/fixtures/ifconfig/darwin_10_3_0 +26 -0
- data/spec/fixtures/ifconfig/darwin_10_3_0_en0 +6 -0
- data/spec/fixtures/ifconfig/darwin_10_6_4 +28 -0
- data/spec/fixtures/ifconfig/darwin_10_6_4_en1 +6 -0
- data/spec/fixtures/ifconfig/darwin_10_6_6_dualstack +8 -0
- data/spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1 +7 -0
- data/spec/fixtures/ifconfig/darwin_9_8_0 +26 -0
- data/spec/fixtures/ifconfig/darwin_9_8_0_en0 +6 -0
- data/spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces +23 -0
- data/spec/fixtures/ifconfig/fedora_10 +36 -0
- data/spec/fixtures/ifconfig/fedora_10_eth0 +9 -0
- data/spec/fixtures/ifconfig/fedora_13 +18 -0
- data/spec/fixtures/ifconfig/fedora_13_eth0 +9 -0
- data/spec/fixtures/ifconfig/fedora_8 +38 -0
- data/spec/fixtures/ifconfig/fedora_8_eth0 +9 -0
- data/spec/fixtures/ifconfig/freebsd_6_0 +12 -0
- data/spec/fixtures/ifconfig/ifconfig_net_tools_1.60.txt +19 -0
- data/spec/fixtures/ifconfig/ifconfig_ubuntu_1204.txt +16 -0
- data/spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces +19 -0
- data/spec/fixtures/ifconfig/linux_ifconfig_no_addr +19 -0
- data/spec/fixtures/ifconfig/linux_ifconfig_no_mac +8 -0
- data/spec/fixtures/ifconfig/linux_ifconfig_venet +24 -0
- data/spec/fixtures/ifconfig/open_solaris_10 +12 -0
- data/spec/fixtures/ifconfig/open_solaris_b132 +20 -0
- data/spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces +10 -0
- data/spec/fixtures/ifconfig/ubuntu_7_04 +38 -0
- data/spec/fixtures/ifconfig/ubuntu_7_04_eth0 +9 -0
- data/spec/fixtures/ldom/ldom_v1 +6 -0
- data/spec/fixtures/netstat/centos_5_5 +5 -0
- data/spec/fixtures/netstat/darwin_10_3_0 +35 -0
- data/spec/fixtures/netstat/darwin_10_6_4 +29 -0
- data/spec/fixtures/netstat/darwin_10_6_6_dualstack +34 -0
- data/spec/fixtures/netstat/darwin_9_8_0 +28 -0
- data/spec/fixtures/netstat/fedora_10 +7 -0
- data/spec/fixtures/netstat/open_solaris_10 +16 -0
- data/spec/fixtures/netstat/open_solaris_b132 +17 -0
- data/spec/fixtures/netstat/ubuntu_7_04 +7 -0
- data/spec/fixtures/processorcount/solaris-psrinfo +24 -0
- data/spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info +1216 -0
- data/spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info +225 -0
- data/spec/fixtures/unit/filesystems/linux +28 -0
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt +19 -0
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1 +10 -0
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo +8 -0
- data/spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt +20 -0
- data/spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt +19 -0
- data/spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt +18 -0
- data/spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt +16 -0
- data/spec/fixtures/unit/netmask/darwin_10_8_5.txt +30 -0
- data/spec/fixtures/unit/netmask/ifconfig_net_tools_1.60.txt +19 -0
- data/spec/fixtures/unit/netmask/ifconfig_ubuntu_1204.txt +16 -0
- data/spec/fixtures/unit/selinux/selinux_sestatus +6 -0
- data/spec/fixtures/unit/util/ec2/centos-arp-ec2.out +1 -0
- data/spec/fixtures/unit/util/ec2/linux-arp-ec2.out +1 -0
- data/spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out +5 -0
- data/spec/fixtures/unit/util/ec2/solaris8_arp_a_not_ec2.out +7 -0
- data/spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out +6 -0
- data/spec/fixtures/unit/util/ec2/windows-2008-arp-a.out +10 -0
- data/spec/fixtures/unit/util/ip/6.0-STABLE_FreeBSD_ifconfig +12 -0
- data/spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig +26 -0
- data/spec/fixtures/unit/util/ip/darwin_ifconfig_all_with_multiple_interfaces +10 -0
- data/spec/fixtures/unit/util/ip/darwin_ifconfig_single_interface +6 -0
- data/spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig +40 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_lanscan +5 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_netstat_in +4 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan +5 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in +4 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lo0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_lanscan +4 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_netstat_in +4 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4_1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lo0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_lanscan +9 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in +6 -0
- data/spec/fixtures/unit/util/ip/linux_2_6_35_proc_net_bonding_bond0 +19 -0
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_eth0 +10 -0
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_ib0 +8 -0
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_lo +9 -0
- data/spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface +18 -0
- data/spec/fixtures/unit/util/ip/linux_ifconfig_ib0 +8 -0
- data/spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces +8 -0
- data/spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface +3 -0
- data/spec/fixtures/unit/util/ip/windows_netsh_all_interfaces +12 -0
- data/spec/fixtures/unit/util/ip/windows_netsh_single_interface +7 -0
- data/spec/fixtures/unit/util/ip/windows_netsh_single_interface6 +18 -0
- data/spec/fixtures/unit/util/loader/nosuchfact.rb +1 -0
- data/spec/fixtures/unit/util/manufacturer/freebsd_dmidecode +42 -0
- data/spec/fixtures/unit/util/manufacturer/intel_linux_dmidecode +549 -0
- data/spec/fixtures/unit/util/manufacturer/linux_dmidecode_with_spaces +60 -0
- data/spec/fixtures/unit/util/manufacturer/opensolaris_smbios +33 -0
- data/spec/fixtures/unit/util/manufacturer/solaris_sunfire_v120_prtdiag +33 -0
- data/spec/fixtures/unit/util/manufacturer/solaris_t5220_prtdiag +136 -0
- data/spec/fixtures/unit/util/processor/solaris-i86pc +28 -0
- data/spec/fixtures/unit/util/processor/solaris-sun4u +151 -0
- data/spec/fixtures/unit/util/processor/x86-pentium2 +41 -0
- data/spec/fixtures/unit/util/uptime/kstat_boot_time +1 -0
- data/spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin +1 -0
- data/spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd +1 -0
- data/spec/fixtures/unit/util/uptime/ubuntu_proc_uptime +1 -0
- data/spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries +0 -0
- data/spec/fixtures/unit/util/virtual/solaris10_proc_self_status1 +0 -0
- data/spec/fixtures/unit/util/vlans/linux_vlan_config +6 -0
- data/spec/fixtures/unit/util/xendomains/xendomains +4 -0
- data/spec/fixtures/unit/virtual/sysfs_dmi_entries_raw.txt +0 -0
- data/spec/fixtures/unit/zfs_version/freebsd_8.2 +14 -0
- data/spec/fixtures/unit/zfs_version/freebsd_9.0 +13 -0
- data/spec/fixtures/unit/zfs_version/linux-fuse_0.6.9 +14 -0
- data/spec/fixtures/unit/zfs_version/solaris_10 +10 -0
- data/spec/fixtures/unit/zfs_version/solaris_11 +12 -0
- data/spec/fixtures/unit/zpool_version/freebsd_8.2 +26 -0
- data/spec/fixtures/unit/zpool_version/freebsd_9.0 +38 -0
- data/spec/fixtures/unit/zpool_version/linux-fuse_0.6.9 +35 -0
- data/spec/fixtures/unit/zpool_version/solaris_10 +31 -0
- data/spec/fixtures/unit/zpool_version/solaris_11 +43 -0
- data/spec/fixtures/virtual/proc_self_status/vserver_2_1/guest +37 -0
- data/spec/fixtures/virtual/proc_self_status/vserver_2_1/host +36 -0
- data/spec/fixtures/virtual/proc_self_status/vserver_2_3/guest +39 -0
- data/spec/fixtures/virtual/proc_self_status/vserver_2_3/host +39 -0
- data/spec/integration/facter_spec.rb +39 -0
- data/spec/lib/facter_spec/cpuinfo.rb +15 -0
- data/spec/lib/facter_spec/windows_network.rb +64 -0
- data/spec/puppetlabs_spec/files.rb +57 -0
- data/spec/puppetlabs_spec/fixtures.rb +49 -0
- data/spec/puppetlabs_spec/matchers.rb +87 -0
- data/spec/puppetlabs_spec/verbose.rb +9 -0
- data/spec/puppetlabs_spec_helper.rb +26 -0
- data/spec/shared_contexts/platform.rb +55 -0
- data/spec/shared_formats/parses.rb +3 -0
- data/spec/spec_helper.rb +75 -0
- data/spec/unit/application_spec.rb +101 -0
- data/spec/unit/architecture_spec.rb +63 -0
- data/spec/unit/blockdevices_spec.rb +109 -0
- data/spec/unit/core/aggregate_spec.rb +125 -0
- data/spec/unit/core/directed_graph_spec.rb +79 -0
- data/spec/unit/core/execution/base_spec.rb +119 -0
- data/spec/unit/core/execution/posix_spec.rb +86 -0
- data/spec/unit/core/execution/windows_spec.rb +106 -0
- data/spec/unit/core/execution_spec.rb +37 -0
- data/spec/unit/core/logging_spec.rb +104 -0
- data/spec/unit/core/resolvable_spec.rb +81 -0
- data/spec/unit/core/suitable_spec.rb +96 -0
- data/spec/unit/domain_spec.rb +310 -0
- data/spec/unit/ec2_spec.rb +187 -0
- data/spec/unit/facter_spec.rb +108 -0
- data/spec/unit/filesystems_spec.rb +50 -0
- data/spec/unit/hardwareisa_spec.rb +41 -0
- data/spec/unit/hardwaremodel_spec.rb +56 -0
- data/spec/unit/hostname_spec.rb +40 -0
- data/spec/unit/id_spec.rb +29 -0
- data/spec/unit/interfaces_spec.rb +57 -0
- data/spec/unit/ipaddress6_spec.rb +161 -0
- data/spec/unit/ipaddress_spec.rb +114 -0
- data/spec/unit/kernel_spec.rb +24 -0
- data/spec/unit/kernelmajversion_spec.rb +17 -0
- data/spec/unit/kernelrelease_spec.rb +53 -0
- data/spec/unit/kernelversion_spec.rb +32 -0
- data/spec/unit/ldom_spec.rb +74 -0
- data/spec/unit/lsbdistcodename_spec.rb +25 -0
- data/spec/unit/lsbdistdescription_spec.rb +25 -0
- data/spec/unit/lsbdistid_spec.rb +25 -0
- data/spec/unit/lsbdistrelease_spec.rb +25 -0
- data/spec/unit/lsbmajdistrelease_spec.rb +13 -0
- data/spec/unit/lsbrelease_spec.rb +25 -0
- data/spec/unit/macaddress_spec.rb +61 -0
- data/spec/unit/manufacturer_spec.rb +115 -0
- data/spec/unit/memory_spec.rb +539 -0
- data/spec/unit/netmask_spec.rb +95 -0
- data/spec/unit/operatingsystem_spec.rb +141 -0
- data/spec/unit/operatingsystemmajrelease_spec.rb +16 -0
- data/spec/unit/operatingsystemrelease_spec.rb +226 -0
- data/spec/unit/physicalprocessorcount_spec.rb +76 -0
- data/spec/unit/processor_spec.rb +393 -0
- data/spec/unit/ps_spec.rb +42 -0
- data/spec/unit/selinux_spec.rb +114 -0
- data/spec/unit/ssh_spec.rb +77 -0
- data/spec/unit/uniqueid_spec.rb +27 -0
- data/spec/unit/uptime_spec.rb +110 -0
- data/spec/unit/util/collection_spec.rb +258 -0
- data/spec/unit/util/config_spec.rb +84 -0
- data/spec/unit/util/confine_spec.rb +148 -0
- data/spec/unit/util/directory_loader_spec.rb +88 -0
- data/spec/unit/util/ec2_spec.rb +180 -0
- data/spec/unit/util/fact_spec.rb +142 -0
- data/spec/unit/util/file_read_spec.rb +29 -0
- data/spec/unit/util/ip/windows_spec.rb +80 -0
- data/spec/unit/util/ip_spec.rb +463 -0
- data/spec/unit/util/loader_spec.rb +286 -0
- data/spec/unit/util/macaddress_spec.rb +141 -0
- data/spec/unit/util/macosx_spec.rb +113 -0
- data/spec/unit/util/manufacturer_spec.rb +179 -0
- data/spec/unit/util/normalization_spec.rb +113 -0
- data/spec/unit/util/parser_spec.rb +200 -0
- data/spec/unit/util/processor_spec.rb +92 -0
- data/spec/unit/util/registry_spec.rb +76 -0
- data/spec/unit/util/resolution_spec.rb +129 -0
- data/spec/unit/util/solaris_zones_spec.rb +127 -0
- data/spec/unit/util/uptime_spec.rb +126 -0
- data/spec/unit/util/values_spec.rb +131 -0
- data/spec/unit/util/virtual_spec.rb +294 -0
- data/spec/unit/util/vlans_spec.rb +12 -0
- data/spec/unit/util/wmi_spec.rb +19 -0
- data/spec/unit/util/xendomains_spec.rb +21 -0
- data/spec/unit/version_spec.rb +42 -0
- data/spec/unit/virtual_spec.rb +470 -0
- data/spec/unit/zfs_version_spec.rb +75 -0
- data/spec/unit/zonename_spec.rb +14 -0
- data/spec/unit/zones_spec.rb +55 -0
- data/spec/unit/zpool_version_spec.rb +75 -0
- data/spec/watchr.rb +125 -0
- metadata +674 -0
@@ -0,0 +1,75 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe "zfs_version fact" do
|
6
|
+
|
7
|
+
# http://blogs.oracle.com/bobn/entry/live_upgrade_and_zfs_versioning
|
8
|
+
#
|
9
|
+
# Solaris Release ZPOOL Version ZFS Version
|
10
|
+
# Solaris 10 10/08 (u6) 10 3
|
11
|
+
# Solaris 10 5/09 (u7) 10 3
|
12
|
+
# Solaris 10 10/09 (u8) 15 4
|
13
|
+
# Solaris 10 9/10 (u9) 22 4
|
14
|
+
# Solaris 10 8/11 (u10) 29 5
|
15
|
+
# Solaris 11 11/11 (ga) 33 5
|
16
|
+
|
17
|
+
before :each do
|
18
|
+
Facter::Core::Execution.stubs(:which).with("zfs").returns("/usr/bin/zfs")
|
19
|
+
end
|
20
|
+
|
21
|
+
it "should return correct version on Solaris 10" do
|
22
|
+
Facter::Core::Execution.stubs(:exec).with("zfs upgrade -v").returns(my_fixture_read('solaris_10'))
|
23
|
+
Facter.fact(:zfs_version).value.should == "3"
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should return correct version on Solaris 11" do
|
27
|
+
Facter::Core::Execution.stubs(:exec).with("zfs upgrade -v").returns(my_fixture_read('solaris_11'))
|
28
|
+
Facter.fact(:zfs_version).value.should == "5"
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should return correct version on FreeBSD 8.2" do
|
32
|
+
Facter::Core::Execution.stubs(:exec).with("zfs upgrade -v").returns(my_fixture_read('freebsd_8.2'))
|
33
|
+
Facter.fact(:zfs_version).value.should == "4"
|
34
|
+
end
|
35
|
+
|
36
|
+
it "should return correct version on FreeBSD 9.0" do
|
37
|
+
Facter::Core::Execution.stubs(:exec).with("zfs upgrade -v").returns(my_fixture_read('freebsd_9.0'))
|
38
|
+
Facter.fact(:zfs_version).value.should == "5"
|
39
|
+
end
|
40
|
+
|
41
|
+
it "should return correct version on Linux with ZFS-fuse" do
|
42
|
+
Facter::Core::Execution.stubs(:exec).with("zfs upgrade -v").returns(my_fixture_read('linux-fuse_0.6.9'))
|
43
|
+
Facter.fact(:zfs_version).value.should == "4"
|
44
|
+
end
|
45
|
+
|
46
|
+
it "should return nil if zfs command is not available" do
|
47
|
+
Facter::Core::Execution.stubs(:which).with("zfs").returns(nil)
|
48
|
+
Facter::Core::Execution.stubs(:exec).with("zfs upgrade -v").returns(my_fixture_read('linux-fuse_0.6.9'))
|
49
|
+
Facter.fact(:zfs_version).value.should == nil
|
50
|
+
end
|
51
|
+
|
52
|
+
it "should return nil if zfs fails to run" do
|
53
|
+
Facter::Core::Execution.stubs(:exec).with("zfs upgrade -v").returns('')
|
54
|
+
Facter.fact(:zfs_version).value.should == nil
|
55
|
+
end
|
56
|
+
|
57
|
+
it "handles the zfs command becoming available at a later point in time" do
|
58
|
+
# Simulate Puppet configuring the zfs tools from a persistent daemon by
|
59
|
+
# simulating three sequential responses to which('zfs').
|
60
|
+
Facter::Core::Execution.stubs(:which).
|
61
|
+
with("zfs").
|
62
|
+
returns(nil,nil,"/usr/bin/zfs")
|
63
|
+
Facter::Core::Execution.stubs(:exec).
|
64
|
+
with("zfs upgrade -v").
|
65
|
+
returns(my_fixture_read('linux-fuse_0.6.9'))
|
66
|
+
|
67
|
+
fact = Facter.fact(:zfs_version)
|
68
|
+
|
69
|
+
# zfs is not present the first two times the fact is resolved.
|
70
|
+
fact.value.should be_nil
|
71
|
+
fact.value.should be_nil
|
72
|
+
# zfs was configured between the second and third resolutions.
|
73
|
+
fact.value.should == "4"
|
74
|
+
end
|
75
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
require 'facter'
|
5
|
+
|
6
|
+
describe "zonename fact" do
|
7
|
+
|
8
|
+
it "should return global zone" do
|
9
|
+
Facter.fact(:kernel).stubs(:value).returns("SunOS")
|
10
|
+
Facter::Core::Execution.stubs(:exec).with("zonename").returns('global')
|
11
|
+
|
12
|
+
Facter.fact(:zonename).value.should == "global"
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe "on Solaris" do
|
6
|
+
before do
|
7
|
+
Facter.fact(:kernel).stubs(:value).returns("SunOS")
|
8
|
+
zone_list = <<-EOF
|
9
|
+
0:global:running:/::native:shared
|
10
|
+
-:local:configured:/::native:shared
|
11
|
+
-:zoneA:stopped:/::native:shared
|
12
|
+
EOF
|
13
|
+
Facter::Core::Execution.stubs(:exec).with('/usr/sbin/zoneadm list -cp').returns(zone_list)
|
14
|
+
Facter.collection.internal_loader.load(:zones)
|
15
|
+
end
|
16
|
+
|
17
|
+
describe "number of zones" do
|
18
|
+
it "should output number of zones" do
|
19
|
+
Facter.fact(:zones).value.should == 3
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
describe "zone specific values" do
|
24
|
+
it "Fact#zone_<z>_status" do
|
25
|
+
{'global' => 'running', 'local' => 'configured', 'zoneA' => 'stopped'}.each do |key, val|
|
26
|
+
Facter.value("zone_%s_status" % key).should == val
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
it "Fact#zone_<z>_id" do
|
31
|
+
{'global' => '0', 'local' => '-', 'zoneA' => '-'}.each do |key, val|
|
32
|
+
Facter.value("zone_%s_id" % key).should == val
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
it "Fact#zone_<z>_path" do
|
37
|
+
{'global' => '/', 'local' => '/', 'zoneA' => '/'}.each do |key, val|
|
38
|
+
Facter.value("zone_%s_path" % key).should == val
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
it "Fact#zone_<z>_brand" do
|
43
|
+
{'global' => 'native', 'local' => 'native', 'zoneA' => 'native'}.each do |key, val|
|
44
|
+
Facter.value("zone_%s_brand" % key).should == val
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
it "Fact#zone_<z>_iptype" do
|
49
|
+
{'global' => 'shared', 'local' => 'shared', 'zoneA' => 'shared'}.each do |key, val|
|
50
|
+
Facter.value("zone_%s_iptype" % key).should == val
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
@@ -0,0 +1,75 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe "zpool_version fact" do
|
6
|
+
|
7
|
+
# http://blogs.oracle.com/bobn/entry/live_upgrade_and_zfs_versioning
|
8
|
+
#
|
9
|
+
# Solaris Release ZPOOL Version ZFS Version
|
10
|
+
# Solaris 10 10/08 (u6) 10 3
|
11
|
+
# Solaris 10 5/09 (u7) 10 3
|
12
|
+
# Solaris 10 10/09 (u8) 15 4
|
13
|
+
# Solaris 10 9/10 (u9) 22 4
|
14
|
+
# Solaris 10 8/11 (u10) 29 5
|
15
|
+
# Solaris 11 11/11 (ga) 33 5
|
16
|
+
|
17
|
+
before :each do
|
18
|
+
Facter::Core::Execution.stubs(:which).with("zpool").returns("/usr/bin/zpool")
|
19
|
+
end
|
20
|
+
|
21
|
+
it "should return correct version on Solaris 10" do
|
22
|
+
Facter::Core::Execution.stubs(:exec).with("zpool upgrade -v").returns(my_fixture_read('solaris_10'))
|
23
|
+
Facter.fact(:zpool_version).value.should == "22"
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should return correct version on Solaris 11" do
|
27
|
+
Facter::Core::Execution.stubs(:exec).with("zpool upgrade -v").returns(my_fixture_read('solaris_11'))
|
28
|
+
Facter.fact(:zpool_version).value.should == "33"
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should return correct version on FreeBSD 8.2" do
|
32
|
+
Facter::Core::Execution.stubs(:exec).with("zpool upgrade -v").returns(my_fixture_read('freebsd_8.2'))
|
33
|
+
Facter.fact(:zpool_version).value.should == "15"
|
34
|
+
end
|
35
|
+
|
36
|
+
it "should return correct version on FreeBSD 9.0" do
|
37
|
+
Facter::Core::Execution.stubs(:exec).with("zpool upgrade -v").returns(my_fixture_read('freebsd_9.0'))
|
38
|
+
Facter.fact(:zpool_version).value.should == "28"
|
39
|
+
end
|
40
|
+
|
41
|
+
it "should return correct version on Linux with ZFS-fuse" do
|
42
|
+
Facter::Core::Execution.stubs(:exec).with("zpool upgrade -v").returns(my_fixture_read('linux-fuse_0.6.9'))
|
43
|
+
Facter.fact(:zpool_version).value.should == "23"
|
44
|
+
end
|
45
|
+
|
46
|
+
it "should return nil if zpool is not available" do
|
47
|
+
Facter::Core::Execution.stubs(:which).with("zpool").returns(nil)
|
48
|
+
Facter::Core::Execution.stubs(:exec).with("zpool upgrade -v").returns(my_fixture_read('linux-fuse_0.6.9'))
|
49
|
+
Facter.fact(:zpool_version).value.should == nil
|
50
|
+
end
|
51
|
+
|
52
|
+
it "should return nil if zpool fails to run" do
|
53
|
+
Facter::Core::Execution.stubs(:exec).with("zpool upgrade -v").returns('')
|
54
|
+
Facter.fact(:zpool_version).value.should == nil
|
55
|
+
end
|
56
|
+
|
57
|
+
it "handles the zpool command becoming available" do
|
58
|
+
# Simulate Puppet configuring the zfs tools from a persistent daemon by
|
59
|
+
# simulating three sequential responses to which('zpool').
|
60
|
+
Facter::Core::Execution.stubs(:which).
|
61
|
+
with("zpool").
|
62
|
+
returns(nil,nil,"/usr/bin/zpool")
|
63
|
+
Facter::Core::Execution.stubs(:exec).
|
64
|
+
with("zpool upgrade -v").
|
65
|
+
returns(my_fixture_read('linux-fuse_0.6.9'))
|
66
|
+
|
67
|
+
fact = Facter.fact(:zpool_version)
|
68
|
+
|
69
|
+
# zfs is not present the first two times the fact is resolved.
|
70
|
+
fact.value.should be_nil
|
71
|
+
fact.value.should be_nil
|
72
|
+
# zfs was configured between the second and third resolutions.
|
73
|
+
fact.value.should == "23"
|
74
|
+
end
|
75
|
+
end
|
data/spec/watchr.rb
ADDED
@@ -0,0 +1,125 @@
|
|
1
|
+
ENV["WATCHR"] = "1"
|
2
|
+
ENV['AUTOTEST'] = 'true'
|
3
|
+
|
4
|
+
def run_comp(cmd)
|
5
|
+
puts cmd
|
6
|
+
results = []
|
7
|
+
old_sync = $stdout.sync
|
8
|
+
$stdout.sync = true
|
9
|
+
line = []
|
10
|
+
begin
|
11
|
+
open("| #{cmd}", "r") do |f|
|
12
|
+
until f.eof? do
|
13
|
+
c = f.getc
|
14
|
+
putc c
|
15
|
+
line << c
|
16
|
+
if c == ?\n
|
17
|
+
results << if RUBY_VERSION >= "1.9" then
|
18
|
+
line.join
|
19
|
+
else
|
20
|
+
line.pack "c*"
|
21
|
+
end
|
22
|
+
line.clear
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
ensure
|
27
|
+
$stdout.sync = old_sync
|
28
|
+
end
|
29
|
+
results.join
|
30
|
+
end
|
31
|
+
|
32
|
+
def clear
|
33
|
+
#system("clear")
|
34
|
+
end
|
35
|
+
|
36
|
+
def growl(message, status)
|
37
|
+
# Strip the color codes
|
38
|
+
message.gsub!(/\[\d+m/, '')
|
39
|
+
|
40
|
+
growlnotify = `which growlnotify`.chomp
|
41
|
+
return if growlnotify.empty?
|
42
|
+
title = "Watchr Test Results"
|
43
|
+
image = status == :pass ? "autotest/images/pass.png" : "autotest/images/fail.png"
|
44
|
+
options = "-w -n Watchr --image '#{File.expand_path(image)}' -m '#{message}' '#{title}'"
|
45
|
+
system %(#{growlnotify} #{options} &)
|
46
|
+
end
|
47
|
+
|
48
|
+
def file2specs(file)
|
49
|
+
%w{spec/unit spec/integration}.collect { |d|
|
50
|
+
file.sub('lib/facter', d).sub('.rb', '_spec.rb')
|
51
|
+
}.find_all { |f|
|
52
|
+
FileTest.exist?(f)
|
53
|
+
}
|
54
|
+
end
|
55
|
+
|
56
|
+
def run_spec(command)
|
57
|
+
clear
|
58
|
+
result = run_comp(command).split("\n").last
|
59
|
+
status = result.include?('0 failures') ? :pass : :fail
|
60
|
+
growl result, status
|
61
|
+
end
|
62
|
+
|
63
|
+
def run_spec_files(files)
|
64
|
+
files = Array(files)
|
65
|
+
return if files.empty?
|
66
|
+
opts = File.readlines('.rspec').collect { |l| l.chomp }.join(" ")
|
67
|
+
begin
|
68
|
+
run_spec("rspec --tty #{opts} #{files.join(' ')}")
|
69
|
+
rescue => detail
|
70
|
+
puts detail.backtrace
|
71
|
+
warn "Failed to run #{files.join(', ')}: #{detail}"
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
def run_suite
|
76
|
+
files = files("unit") + files("integration")
|
77
|
+
opts = File.readlines('.rspec').collect { |l| l.chomp }.join(" ")
|
78
|
+
run_spec("rspec --tty #{opts} #{files.join(' ')}")
|
79
|
+
end
|
80
|
+
|
81
|
+
def files(dir)
|
82
|
+
require 'find'
|
83
|
+
|
84
|
+
result = []
|
85
|
+
Find.find(File.join("spec", dir)) do |path|
|
86
|
+
result << path if path =~ /\.rb/
|
87
|
+
end
|
88
|
+
|
89
|
+
result
|
90
|
+
end
|
91
|
+
|
92
|
+
watch('spec/spec_helper.rb') { run_suite }
|
93
|
+
watch(%r{^spec/(unit|integration)/.*\.rb$}) { |md| run_spec_files(md[0]) }
|
94
|
+
watch(%r{^lib/facter/(.*)\.rb$}) { |md|
|
95
|
+
run_spec_files(file2specs(md[0]))
|
96
|
+
}
|
97
|
+
watch(%r{^spec/lib/spec.*}) { |md| run_suite }
|
98
|
+
watch(%r{^spec/lib/monkey_patches/.*}) { |md| run_suite }
|
99
|
+
|
100
|
+
# Ctrl-\
|
101
|
+
Signal.trap 'QUIT' do
|
102
|
+
puts " --- Running all tests ---\n\n"
|
103
|
+
run_suite
|
104
|
+
end
|
105
|
+
|
106
|
+
@interrupted = false
|
107
|
+
|
108
|
+
# Ctrl-C
|
109
|
+
Signal.trap 'INT' do
|
110
|
+
if @interrupted
|
111
|
+
@wants_to_quit = true
|
112
|
+
abort("\n")
|
113
|
+
else
|
114
|
+
puts "Interrupt a second time to quit; wait for rerun of tests"
|
115
|
+
@interrupted = true
|
116
|
+
Kernel.sleep 1.5
|
117
|
+
# raise Interrupt, nil # let the run loop catch it
|
118
|
+
begin
|
119
|
+
run_suite
|
120
|
+
rescue => detail
|
121
|
+
puts detail.backtrace
|
122
|
+
puts "Could not run suite: #{detail}"
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
metadata
ADDED
@@ -0,0 +1,674 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: facter
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.1.rc1
|
5
|
+
platform: universal-darwin
|
6
|
+
authors:
|
7
|
+
- Puppet Labs
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-02-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: CFPropertyList
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 2.2.6
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 2.2.6
|
27
|
+
description: You can prove anything with facts!
|
28
|
+
email: info@puppetlabs.com
|
29
|
+
executables:
|
30
|
+
- facter
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- COMMITTERS.md
|
35
|
+
- CONTRIBUTING.md
|
36
|
+
- Gemfile
|
37
|
+
- LICENSE
|
38
|
+
- README.md
|
39
|
+
- Rakefile
|
40
|
+
- install.rb
|
41
|
+
- bin/facter
|
42
|
+
- etc/facter.conf
|
43
|
+
- ext/build_defaults.yaml
|
44
|
+
- ext/debian/changelog.erb
|
45
|
+
- ext/debian/compat
|
46
|
+
- ext/debian/control
|
47
|
+
- ext/debian/copyright
|
48
|
+
- ext/debian/docs
|
49
|
+
- ext/debian/lintian-overrides
|
50
|
+
- ext/debian/rules
|
51
|
+
- ext/debian/source/format
|
52
|
+
- ext/facter-diff
|
53
|
+
- ext/ips/facter.p5m.erb
|
54
|
+
- ext/ips/rules
|
55
|
+
- ext/ips/transforms
|
56
|
+
- ext/osx/file_mapping.yaml
|
57
|
+
- ext/osx/preflight.erb
|
58
|
+
- ext/osx/prototype.plist.erb
|
59
|
+
- ext/project_data.yaml
|
60
|
+
- ext/redhat/facter.spec.erb
|
61
|
+
- ext/solaris/pkginfo
|
62
|
+
- lib/facter.rb
|
63
|
+
- lib/facter/Cfkey.rb
|
64
|
+
- lib/facter/application.rb
|
65
|
+
- lib/facter/architecture.rb
|
66
|
+
- lib/facter/augeasversion.rb
|
67
|
+
- lib/facter/blockdevices.rb
|
68
|
+
- lib/facter/core/aggregate.rb
|
69
|
+
- lib/facter/core/directed_graph.rb
|
70
|
+
- lib/facter/core/execution.rb
|
71
|
+
- lib/facter/core/execution/base.rb
|
72
|
+
- lib/facter/core/execution/posix.rb
|
73
|
+
- lib/facter/core/execution/windows.rb
|
74
|
+
- lib/facter/core/logging.rb
|
75
|
+
- lib/facter/core/resolvable.rb
|
76
|
+
- lib/facter/core/suitable.rb
|
77
|
+
- lib/facter/domain.rb
|
78
|
+
- lib/facter/ec2.rb
|
79
|
+
- lib/facter/facterversion.rb
|
80
|
+
- lib/facter/filesystems.rb
|
81
|
+
- lib/facter/fqdn.rb
|
82
|
+
- lib/facter/hardwareisa.rb
|
83
|
+
- lib/facter/hardwaremodel.rb
|
84
|
+
- lib/facter/hostname.rb
|
85
|
+
- lib/facter/id.rb
|
86
|
+
- lib/facter/interfaces.rb
|
87
|
+
- lib/facter/ipaddress.rb
|
88
|
+
- lib/facter/ipaddress6.rb
|
89
|
+
- lib/facter/iphostnumber.rb
|
90
|
+
- lib/facter/kernel.rb
|
91
|
+
- lib/facter/kernelmajversion.rb
|
92
|
+
- lib/facter/kernelrelease.rb
|
93
|
+
- lib/facter/kernelversion.rb
|
94
|
+
- lib/facter/ldom.rb
|
95
|
+
- lib/facter/lsbdistcodename.rb
|
96
|
+
- lib/facter/lsbdistdescription.rb
|
97
|
+
- lib/facter/lsbdistid.rb
|
98
|
+
- lib/facter/lsbdistrelease.rb
|
99
|
+
- lib/facter/lsbmajdistrelease.rb
|
100
|
+
- lib/facter/lsbrelease.rb
|
101
|
+
- lib/facter/macaddress.rb
|
102
|
+
- lib/facter/macosx.rb
|
103
|
+
- lib/facter/manufacturer.rb
|
104
|
+
- lib/facter/memory.rb
|
105
|
+
- lib/facter/netmask.rb
|
106
|
+
- lib/facter/network.rb
|
107
|
+
- lib/facter/operatingsystem.rb
|
108
|
+
- lib/facter/operatingsystemmajrelease.rb
|
109
|
+
- lib/facter/operatingsystemrelease.rb
|
110
|
+
- lib/facter/osfamily.rb
|
111
|
+
- lib/facter/path.rb
|
112
|
+
- lib/facter/physicalprocessorcount.rb
|
113
|
+
- lib/facter/processor.rb
|
114
|
+
- lib/facter/ps.rb
|
115
|
+
- lib/facter/puppetversion.rb
|
116
|
+
- lib/facter/rubysitedir.rb
|
117
|
+
- lib/facter/rubyversion.rb
|
118
|
+
- lib/facter/selinux.rb
|
119
|
+
- lib/facter/ssh.rb
|
120
|
+
- lib/facter/timezone.rb
|
121
|
+
- lib/facter/uniqueid.rb
|
122
|
+
- lib/facter/uptime.rb
|
123
|
+
- lib/facter/uptime_days.rb
|
124
|
+
- lib/facter/uptime_hours.rb
|
125
|
+
- lib/facter/uptime_seconds.rb
|
126
|
+
- lib/facter/util/architecture.rb
|
127
|
+
- lib/facter/util/collection.rb
|
128
|
+
- lib/facter/util/composite_loader.rb
|
129
|
+
- lib/facter/util/config.rb
|
130
|
+
- lib/facter/util/confine.rb
|
131
|
+
- lib/facter/util/directory_loader.rb
|
132
|
+
- lib/facter/util/ec2.rb
|
133
|
+
- lib/facter/util/fact.rb
|
134
|
+
- lib/facter/util/file_read.rb
|
135
|
+
- lib/facter/util/formatter.rb
|
136
|
+
- lib/facter/util/ip.rb
|
137
|
+
- lib/facter/util/ip/windows.rb
|
138
|
+
- lib/facter/util/loader.rb
|
139
|
+
- lib/facter/util/macaddress.rb
|
140
|
+
- lib/facter/util/macosx.rb
|
141
|
+
- lib/facter/util/manufacturer.rb
|
142
|
+
- lib/facter/util/memory.rb
|
143
|
+
- lib/facter/util/monkey_patches.rb
|
144
|
+
- lib/facter/util/netmask.rb
|
145
|
+
- lib/facter/util/normalization.rb
|
146
|
+
- lib/facter/util/nothing_loader.rb
|
147
|
+
- lib/facter/util/parser.rb
|
148
|
+
- lib/facter/util/plist.rb
|
149
|
+
- lib/facter/util/plist/generator.rb
|
150
|
+
- lib/facter/util/plist/parser.rb
|
151
|
+
- lib/facter/util/processor.rb
|
152
|
+
- lib/facter/util/registry.rb
|
153
|
+
- lib/facter/util/resolution.rb
|
154
|
+
- lib/facter/util/solaris_zones.rb
|
155
|
+
- lib/facter/util/unix_root.rb
|
156
|
+
- lib/facter/util/uptime.rb
|
157
|
+
- lib/facter/util/values.rb
|
158
|
+
- lib/facter/util/virtual.rb
|
159
|
+
- lib/facter/util/vlans.rb
|
160
|
+
- lib/facter/util/windows_root.rb
|
161
|
+
- lib/facter/util/wmi.rb
|
162
|
+
- lib/facter/util/xendomains.rb
|
163
|
+
- lib/facter/version.rb
|
164
|
+
- lib/facter/virtual.rb
|
165
|
+
- lib/facter/vlans.rb
|
166
|
+
- lib/facter/xendomains.rb
|
167
|
+
- lib/facter/zfs_version.rb
|
168
|
+
- lib/facter/zonename.rb
|
169
|
+
- lib/facter/zones.rb
|
170
|
+
- lib/facter/zpool_version.rb
|
171
|
+
- spec/fixtures/cpuinfo/amd64dual
|
172
|
+
- spec/fixtures/cpuinfo/amd64quad
|
173
|
+
- spec/fixtures/cpuinfo/amd64solo
|
174
|
+
- spec/fixtures/cpuinfo/amd64tri
|
175
|
+
- spec/fixtures/cpuinfo/amd64twentyfour
|
176
|
+
- spec/fixtures/cpuinfo/bbg3-armel
|
177
|
+
- spec/fixtures/cpuinfo/beaglexm-armel
|
178
|
+
- spec/fixtures/cpuinfo/panda-armel
|
179
|
+
- spec/fixtures/cpuinfo/ppc64
|
180
|
+
- spec/fixtures/cpuinfo/sparc
|
181
|
+
- spec/fixtures/hpux/machinfo/hppa-rp4440
|
182
|
+
- spec/fixtures/hpux/machinfo/ia64-rx2620
|
183
|
+
- spec/fixtures/hpux/machinfo/ia64-rx6600
|
184
|
+
- spec/fixtures/hpux/machinfo/ia64-rx8640
|
185
|
+
- spec/fixtures/hpux/machinfo/superdome-server-SD32B
|
186
|
+
- spec/fixtures/hpux/machinfo/superdome2-16s
|
187
|
+
- spec/fixtures/hpux/sched.models
|
188
|
+
- spec/fixtures/hpux/unistd.h
|
189
|
+
- spec/fixtures/ifconfig/bsd_ifconfig_all_with_multiple_interfaces
|
190
|
+
- spec/fixtures/ifconfig/centos_5_5
|
191
|
+
- spec/fixtures/ifconfig/centos_5_5_eth0
|
192
|
+
- spec/fixtures/ifconfig/darwin_10_3_0
|
193
|
+
- spec/fixtures/ifconfig/darwin_10_3_0_en0
|
194
|
+
- spec/fixtures/ifconfig/darwin_10_6_4
|
195
|
+
- spec/fixtures/ifconfig/darwin_10_6_4_en1
|
196
|
+
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack
|
197
|
+
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1
|
198
|
+
- spec/fixtures/ifconfig/darwin_9_8_0
|
199
|
+
- spec/fixtures/ifconfig/darwin_9_8_0_en0
|
200
|
+
- spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces
|
201
|
+
- spec/fixtures/ifconfig/fedora_10
|
202
|
+
- spec/fixtures/ifconfig/fedora_10_eth0
|
203
|
+
- spec/fixtures/ifconfig/fedora_13
|
204
|
+
- spec/fixtures/ifconfig/fedora_13_eth0
|
205
|
+
- spec/fixtures/ifconfig/fedora_8
|
206
|
+
- spec/fixtures/ifconfig/fedora_8_eth0
|
207
|
+
- spec/fixtures/ifconfig/freebsd_6_0
|
208
|
+
- spec/fixtures/ifconfig/ifconfig_net_tools_1.60.txt
|
209
|
+
- spec/fixtures/ifconfig/ifconfig_ubuntu_1204.txt
|
210
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces
|
211
|
+
- spec/fixtures/ifconfig/linux_ifconfig_no_addr
|
212
|
+
- spec/fixtures/ifconfig/linux_ifconfig_no_mac
|
213
|
+
- spec/fixtures/ifconfig/linux_ifconfig_venet
|
214
|
+
- spec/fixtures/ifconfig/open_solaris_10
|
215
|
+
- spec/fixtures/ifconfig/open_solaris_b132
|
216
|
+
- spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces
|
217
|
+
- spec/fixtures/ifconfig/ubuntu_7_04
|
218
|
+
- spec/fixtures/ifconfig/ubuntu_7_04_eth0
|
219
|
+
- spec/fixtures/ldom/ldom_v1
|
220
|
+
- spec/fixtures/netstat/centos_5_5
|
221
|
+
- spec/fixtures/netstat/darwin_10_3_0
|
222
|
+
- spec/fixtures/netstat/darwin_10_6_4
|
223
|
+
- spec/fixtures/netstat/darwin_10_6_6_dualstack
|
224
|
+
- spec/fixtures/netstat/darwin_9_8_0
|
225
|
+
- spec/fixtures/netstat/fedora_10
|
226
|
+
- spec/fixtures/netstat/open_solaris_10
|
227
|
+
- spec/fixtures/netstat/open_solaris_b132
|
228
|
+
- spec/fixtures/netstat/ubuntu_7_04
|
229
|
+
- spec/fixtures/processorcount/solaris-psrinfo
|
230
|
+
- spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info
|
231
|
+
- spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info
|
232
|
+
- spec/fixtures/unit/filesystems/linux
|
233
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt
|
234
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1
|
235
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo
|
236
|
+
- spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
|
237
|
+
- spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt
|
238
|
+
- spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt
|
239
|
+
- spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt
|
240
|
+
- spec/fixtures/unit/netmask/darwin_10_8_5.txt
|
241
|
+
- spec/fixtures/unit/netmask/ifconfig_net_tools_1.60.txt
|
242
|
+
- spec/fixtures/unit/netmask/ifconfig_ubuntu_1204.txt
|
243
|
+
- spec/fixtures/unit/selinux/selinux_sestatus
|
244
|
+
- spec/fixtures/unit/util/ec2/centos-arp-ec2.out
|
245
|
+
- spec/fixtures/unit/util/ec2/linux-arp-ec2.out
|
246
|
+
- spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out
|
247
|
+
- spec/fixtures/unit/util/ec2/solaris8_arp_a_not_ec2.out
|
248
|
+
- spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out
|
249
|
+
- spec/fixtures/unit/util/ec2/windows-2008-arp-a.out
|
250
|
+
- spec/fixtures/unit/util/ip/6.0-STABLE_FreeBSD_ifconfig
|
251
|
+
- spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig
|
252
|
+
- spec/fixtures/unit/util/ip/darwin_ifconfig_all_with_multiple_interfaces
|
253
|
+
- spec/fixtures/unit/util/ip/darwin_ifconfig_single_interface
|
254
|
+
- spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
|
255
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan0
|
256
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1
|
257
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0
|
258
|
+
- spec/fixtures/unit/util/ip/hpux_1111_lanscan
|
259
|
+
- spec/fixtures/unit/util/ip/hpux_1111_netstat_in
|
260
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0
|
261
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1
|
262
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0
|
263
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan
|
264
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in
|
265
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0
|
266
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1
|
267
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lo0
|
268
|
+
- spec/fixtures/unit/util/ip/hpux_1131_lanscan
|
269
|
+
- spec/fixtures/unit/util/ip/hpux_1131_netstat_in
|
270
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan1
|
271
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4
|
272
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4_1
|
273
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lo0
|
274
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_lanscan
|
275
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in
|
276
|
+
- spec/fixtures/unit/util/ip/linux_2_6_35_proc_net_bonding_bond0
|
277
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_eth0
|
278
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_ib0
|
279
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_lo
|
280
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
|
281
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_ib0
|
282
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces
|
283
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
|
284
|
+
- spec/fixtures/unit/util/ip/windows_netsh_all_interfaces
|
285
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface
|
286
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface6
|
287
|
+
- spec/fixtures/unit/util/loader/nosuchfact.rb
|
288
|
+
- spec/fixtures/unit/util/manufacturer/freebsd_dmidecode
|
289
|
+
- spec/fixtures/unit/util/manufacturer/intel_linux_dmidecode
|
290
|
+
- spec/fixtures/unit/util/manufacturer/linux_dmidecode_with_spaces
|
291
|
+
- spec/fixtures/unit/util/manufacturer/opensolaris_smbios
|
292
|
+
- spec/fixtures/unit/util/manufacturer/solaris_sunfire_v120_prtdiag
|
293
|
+
- spec/fixtures/unit/util/manufacturer/solaris_t5220_prtdiag
|
294
|
+
- spec/fixtures/unit/util/processor/solaris-i86pc
|
295
|
+
- spec/fixtures/unit/util/processor/solaris-sun4u
|
296
|
+
- spec/fixtures/unit/util/processor/x86-pentium2
|
297
|
+
- spec/fixtures/unit/util/uptime/kstat_boot_time
|
298
|
+
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin
|
299
|
+
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd
|
300
|
+
- spec/fixtures/unit/util/uptime/ubuntu_proc_uptime
|
301
|
+
- spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries
|
302
|
+
- spec/fixtures/unit/util/virtual/solaris10_proc_self_status1
|
303
|
+
- spec/fixtures/unit/util/vlans/linux_vlan_config
|
304
|
+
- spec/fixtures/unit/util/xendomains/xendomains
|
305
|
+
- spec/fixtures/unit/virtual/sysfs_dmi_entries_raw.txt
|
306
|
+
- spec/fixtures/unit/zfs_version/freebsd_8.2
|
307
|
+
- spec/fixtures/unit/zfs_version/freebsd_9.0
|
308
|
+
- spec/fixtures/unit/zfs_version/linux-fuse_0.6.9
|
309
|
+
- spec/fixtures/unit/zfs_version/solaris_10
|
310
|
+
- spec/fixtures/unit/zfs_version/solaris_11
|
311
|
+
- spec/fixtures/unit/zpool_version/freebsd_8.2
|
312
|
+
- spec/fixtures/unit/zpool_version/freebsd_9.0
|
313
|
+
- spec/fixtures/unit/zpool_version/linux-fuse_0.6.9
|
314
|
+
- spec/fixtures/unit/zpool_version/solaris_10
|
315
|
+
- spec/fixtures/unit/zpool_version/solaris_11
|
316
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_1/guest
|
317
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_1/host
|
318
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_3/guest
|
319
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_3/host
|
320
|
+
- spec/integration/facter_spec.rb
|
321
|
+
- spec/lib/facter_spec/cpuinfo.rb
|
322
|
+
- spec/lib/facter_spec/windows_network.rb
|
323
|
+
- spec/puppetlabs_spec/files.rb
|
324
|
+
- spec/puppetlabs_spec/fixtures.rb
|
325
|
+
- spec/puppetlabs_spec/matchers.rb
|
326
|
+
- spec/puppetlabs_spec/verbose.rb
|
327
|
+
- spec/puppetlabs_spec_helper.rb
|
328
|
+
- spec/shared_contexts/platform.rb
|
329
|
+
- spec/shared_formats/parses.rb
|
330
|
+
- spec/spec_helper.rb
|
331
|
+
- spec/unit/application_spec.rb
|
332
|
+
- spec/unit/architecture_spec.rb
|
333
|
+
- spec/unit/blockdevices_spec.rb
|
334
|
+
- spec/unit/core/aggregate_spec.rb
|
335
|
+
- spec/unit/core/directed_graph_spec.rb
|
336
|
+
- spec/unit/core/execution/base_spec.rb
|
337
|
+
- spec/unit/core/execution/posix_spec.rb
|
338
|
+
- spec/unit/core/execution/windows_spec.rb
|
339
|
+
- spec/unit/core/execution_spec.rb
|
340
|
+
- spec/unit/core/logging_spec.rb
|
341
|
+
- spec/unit/core/resolvable_spec.rb
|
342
|
+
- spec/unit/core/suitable_spec.rb
|
343
|
+
- spec/unit/domain_spec.rb
|
344
|
+
- spec/unit/ec2_spec.rb
|
345
|
+
- spec/unit/facter_spec.rb
|
346
|
+
- spec/unit/filesystems_spec.rb
|
347
|
+
- spec/unit/hardwareisa_spec.rb
|
348
|
+
- spec/unit/hardwaremodel_spec.rb
|
349
|
+
- spec/unit/hostname_spec.rb
|
350
|
+
- spec/unit/id_spec.rb
|
351
|
+
- spec/unit/interfaces_spec.rb
|
352
|
+
- spec/unit/ipaddress6_spec.rb
|
353
|
+
- spec/unit/ipaddress_spec.rb
|
354
|
+
- spec/unit/kernel_spec.rb
|
355
|
+
- spec/unit/kernelmajversion_spec.rb
|
356
|
+
- spec/unit/kernelrelease_spec.rb
|
357
|
+
- spec/unit/kernelversion_spec.rb
|
358
|
+
- spec/unit/ldom_spec.rb
|
359
|
+
- spec/unit/lsbdistcodename_spec.rb
|
360
|
+
- spec/unit/lsbdistdescription_spec.rb
|
361
|
+
- spec/unit/lsbdistid_spec.rb
|
362
|
+
- spec/unit/lsbdistrelease_spec.rb
|
363
|
+
- spec/unit/lsbmajdistrelease_spec.rb
|
364
|
+
- spec/unit/lsbrelease_spec.rb
|
365
|
+
- spec/unit/macaddress_spec.rb
|
366
|
+
- spec/unit/manufacturer_spec.rb
|
367
|
+
- spec/unit/memory_spec.rb
|
368
|
+
- spec/unit/netmask_spec.rb
|
369
|
+
- spec/unit/operatingsystem_spec.rb
|
370
|
+
- spec/unit/operatingsystemmajrelease_spec.rb
|
371
|
+
- spec/unit/operatingsystemrelease_spec.rb
|
372
|
+
- spec/unit/physicalprocessorcount_spec.rb
|
373
|
+
- spec/unit/processor_spec.rb
|
374
|
+
- spec/unit/ps_spec.rb
|
375
|
+
- spec/unit/selinux_spec.rb
|
376
|
+
- spec/unit/ssh_spec.rb
|
377
|
+
- spec/unit/uniqueid_spec.rb
|
378
|
+
- spec/unit/uptime_spec.rb
|
379
|
+
- spec/unit/util/collection_spec.rb
|
380
|
+
- spec/unit/util/config_spec.rb
|
381
|
+
- spec/unit/util/confine_spec.rb
|
382
|
+
- spec/unit/util/directory_loader_spec.rb
|
383
|
+
- spec/unit/util/ec2_spec.rb
|
384
|
+
- spec/unit/util/fact_spec.rb
|
385
|
+
- spec/unit/util/file_read_spec.rb
|
386
|
+
- spec/unit/util/ip/windows_spec.rb
|
387
|
+
- spec/unit/util/ip_spec.rb
|
388
|
+
- spec/unit/util/loader_spec.rb
|
389
|
+
- spec/unit/util/macaddress_spec.rb
|
390
|
+
- spec/unit/util/macosx_spec.rb
|
391
|
+
- spec/unit/util/manufacturer_spec.rb
|
392
|
+
- spec/unit/util/normalization_spec.rb
|
393
|
+
- spec/unit/util/parser_spec.rb
|
394
|
+
- spec/unit/util/processor_spec.rb
|
395
|
+
- spec/unit/util/registry_spec.rb
|
396
|
+
- spec/unit/util/resolution_spec.rb
|
397
|
+
- spec/unit/util/solaris_zones_spec.rb
|
398
|
+
- spec/unit/util/uptime_spec.rb
|
399
|
+
- spec/unit/util/values_spec.rb
|
400
|
+
- spec/unit/util/virtual_spec.rb
|
401
|
+
- spec/unit/util/vlans_spec.rb
|
402
|
+
- spec/unit/util/wmi_spec.rb
|
403
|
+
- spec/unit/util/xendomains_spec.rb
|
404
|
+
- spec/unit/version_spec.rb
|
405
|
+
- spec/unit/virtual_spec.rb
|
406
|
+
- spec/unit/zfs_version_spec.rb
|
407
|
+
- spec/unit/zonename_spec.rb
|
408
|
+
- spec/unit/zones_spec.rb
|
409
|
+
- spec/unit/zpool_version_spec.rb
|
410
|
+
- spec/watchr.rb
|
411
|
+
homepage: https://github.com/puppetlabs/facter
|
412
|
+
licenses: []
|
413
|
+
metadata: {}
|
414
|
+
post_install_message:
|
415
|
+
rdoc_options: []
|
416
|
+
require_paths:
|
417
|
+
- lib
|
418
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
419
|
+
requirements:
|
420
|
+
- - '>='
|
421
|
+
- !ruby/object:Gem::Version
|
422
|
+
version: '0'
|
423
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
424
|
+
requirements:
|
425
|
+
- - '>'
|
426
|
+
- !ruby/object:Gem::Version
|
427
|
+
version: 1.3.1
|
428
|
+
requirements: []
|
429
|
+
rubyforge_project:
|
430
|
+
rubygems_version: 2.0.3
|
431
|
+
signing_key:
|
432
|
+
specification_version: 4
|
433
|
+
summary: Facter, a system inventory tool
|
434
|
+
test_files:
|
435
|
+
- spec/fixtures/cpuinfo/amd64dual
|
436
|
+
- spec/fixtures/cpuinfo/amd64quad
|
437
|
+
- spec/fixtures/cpuinfo/amd64solo
|
438
|
+
- spec/fixtures/cpuinfo/amd64tri
|
439
|
+
- spec/fixtures/cpuinfo/amd64twentyfour
|
440
|
+
- spec/fixtures/cpuinfo/bbg3-armel
|
441
|
+
- spec/fixtures/cpuinfo/beaglexm-armel
|
442
|
+
- spec/fixtures/cpuinfo/panda-armel
|
443
|
+
- spec/fixtures/cpuinfo/ppc64
|
444
|
+
- spec/fixtures/cpuinfo/sparc
|
445
|
+
- spec/fixtures/hpux/machinfo/hppa-rp4440
|
446
|
+
- spec/fixtures/hpux/machinfo/ia64-rx2620
|
447
|
+
- spec/fixtures/hpux/machinfo/ia64-rx6600
|
448
|
+
- spec/fixtures/hpux/machinfo/ia64-rx8640
|
449
|
+
- spec/fixtures/hpux/machinfo/superdome-server-SD32B
|
450
|
+
- spec/fixtures/hpux/machinfo/superdome2-16s
|
451
|
+
- spec/fixtures/hpux/sched.models
|
452
|
+
- spec/fixtures/hpux/unistd.h
|
453
|
+
- spec/fixtures/ifconfig/bsd_ifconfig_all_with_multiple_interfaces
|
454
|
+
- spec/fixtures/ifconfig/centos_5_5
|
455
|
+
- spec/fixtures/ifconfig/centos_5_5_eth0
|
456
|
+
- spec/fixtures/ifconfig/darwin_10_3_0
|
457
|
+
- spec/fixtures/ifconfig/darwin_10_3_0_en0
|
458
|
+
- spec/fixtures/ifconfig/darwin_10_6_4
|
459
|
+
- spec/fixtures/ifconfig/darwin_10_6_4_en1
|
460
|
+
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack
|
461
|
+
- spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1
|
462
|
+
- spec/fixtures/ifconfig/darwin_9_8_0
|
463
|
+
- spec/fixtures/ifconfig/darwin_9_8_0_en0
|
464
|
+
- spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces
|
465
|
+
- spec/fixtures/ifconfig/fedora_10
|
466
|
+
- spec/fixtures/ifconfig/fedora_10_eth0
|
467
|
+
- spec/fixtures/ifconfig/fedora_13
|
468
|
+
- spec/fixtures/ifconfig/fedora_13_eth0
|
469
|
+
- spec/fixtures/ifconfig/fedora_8
|
470
|
+
- spec/fixtures/ifconfig/fedora_8_eth0
|
471
|
+
- spec/fixtures/ifconfig/freebsd_6_0
|
472
|
+
- spec/fixtures/ifconfig/ifconfig_net_tools_1.60.txt
|
473
|
+
- spec/fixtures/ifconfig/ifconfig_ubuntu_1204.txt
|
474
|
+
- spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces
|
475
|
+
- spec/fixtures/ifconfig/linux_ifconfig_no_addr
|
476
|
+
- spec/fixtures/ifconfig/linux_ifconfig_no_mac
|
477
|
+
- spec/fixtures/ifconfig/linux_ifconfig_venet
|
478
|
+
- spec/fixtures/ifconfig/open_solaris_10
|
479
|
+
- spec/fixtures/ifconfig/open_solaris_b132
|
480
|
+
- spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces
|
481
|
+
- spec/fixtures/ifconfig/ubuntu_7_04
|
482
|
+
- spec/fixtures/ifconfig/ubuntu_7_04_eth0
|
483
|
+
- spec/fixtures/ldom/ldom_v1
|
484
|
+
- spec/fixtures/netstat/centos_5_5
|
485
|
+
- spec/fixtures/netstat/darwin_10_3_0
|
486
|
+
- spec/fixtures/netstat/darwin_10_6_4
|
487
|
+
- spec/fixtures/netstat/darwin_10_6_6_dualstack
|
488
|
+
- spec/fixtures/netstat/darwin_9_8_0
|
489
|
+
- spec/fixtures/netstat/fedora_10
|
490
|
+
- spec/fixtures/netstat/open_solaris_10
|
491
|
+
- spec/fixtures/netstat/open_solaris_b132
|
492
|
+
- spec/fixtures/netstat/ubuntu_7_04
|
493
|
+
- spec/fixtures/processorcount/solaris-psrinfo
|
494
|
+
- spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info
|
495
|
+
- spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info
|
496
|
+
- spec/fixtures/unit/filesystems/linux
|
497
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt
|
498
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1
|
499
|
+
- spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo
|
500
|
+
- spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
|
501
|
+
- spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt
|
502
|
+
- spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt
|
503
|
+
- spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt
|
504
|
+
- spec/fixtures/unit/netmask/darwin_10_8_5.txt
|
505
|
+
- spec/fixtures/unit/netmask/ifconfig_net_tools_1.60.txt
|
506
|
+
- spec/fixtures/unit/netmask/ifconfig_ubuntu_1204.txt
|
507
|
+
- spec/fixtures/unit/selinux/selinux_sestatus
|
508
|
+
- spec/fixtures/unit/util/ec2/centos-arp-ec2.out
|
509
|
+
- spec/fixtures/unit/util/ec2/linux-arp-ec2.out
|
510
|
+
- spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out
|
511
|
+
- spec/fixtures/unit/util/ec2/solaris8_arp_a_not_ec2.out
|
512
|
+
- spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out
|
513
|
+
- spec/fixtures/unit/util/ec2/windows-2008-arp-a.out
|
514
|
+
- spec/fixtures/unit/util/ip/6.0-STABLE_FreeBSD_ifconfig
|
515
|
+
- spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig
|
516
|
+
- spec/fixtures/unit/util/ip/darwin_ifconfig_all_with_multiple_interfaces
|
517
|
+
- spec/fixtures/unit/util/ip/darwin_ifconfig_single_interface
|
518
|
+
- spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
|
519
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan0
|
520
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1
|
521
|
+
- spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0
|
522
|
+
- spec/fixtures/unit/util/ip/hpux_1111_lanscan
|
523
|
+
- spec/fixtures/unit/util/ip/hpux_1111_netstat_in
|
524
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0
|
525
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1
|
526
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0
|
527
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan
|
528
|
+
- spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in
|
529
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0
|
530
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1
|
531
|
+
- spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lo0
|
532
|
+
- spec/fixtures/unit/util/ip/hpux_1131_lanscan
|
533
|
+
- spec/fixtures/unit/util/ip/hpux_1131_netstat_in
|
534
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan1
|
535
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4
|
536
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4_1
|
537
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lo0
|
538
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_lanscan
|
539
|
+
- spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in
|
540
|
+
- spec/fixtures/unit/util/ip/linux_2_6_35_proc_net_bonding_bond0
|
541
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_eth0
|
542
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_ib0
|
543
|
+
- spec/fixtures/unit/util/ip/linux_get_single_interface_lo
|
544
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
|
545
|
+
- spec/fixtures/unit/util/ip/linux_ifconfig_ib0
|
546
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces
|
547
|
+
- spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
|
548
|
+
- spec/fixtures/unit/util/ip/windows_netsh_all_interfaces
|
549
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface
|
550
|
+
- spec/fixtures/unit/util/ip/windows_netsh_single_interface6
|
551
|
+
- spec/fixtures/unit/util/loader/nosuchfact.rb
|
552
|
+
- spec/fixtures/unit/util/manufacturer/freebsd_dmidecode
|
553
|
+
- spec/fixtures/unit/util/manufacturer/intel_linux_dmidecode
|
554
|
+
- spec/fixtures/unit/util/manufacturer/linux_dmidecode_with_spaces
|
555
|
+
- spec/fixtures/unit/util/manufacturer/opensolaris_smbios
|
556
|
+
- spec/fixtures/unit/util/manufacturer/solaris_sunfire_v120_prtdiag
|
557
|
+
- spec/fixtures/unit/util/manufacturer/solaris_t5220_prtdiag
|
558
|
+
- spec/fixtures/unit/util/processor/solaris-i86pc
|
559
|
+
- spec/fixtures/unit/util/processor/solaris-sun4u
|
560
|
+
- spec/fixtures/unit/util/processor/x86-pentium2
|
561
|
+
- spec/fixtures/unit/util/uptime/kstat_boot_time
|
562
|
+
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin
|
563
|
+
- spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd
|
564
|
+
- spec/fixtures/unit/util/uptime/ubuntu_proc_uptime
|
565
|
+
- spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries
|
566
|
+
- spec/fixtures/unit/util/virtual/solaris10_proc_self_status1
|
567
|
+
- spec/fixtures/unit/util/vlans/linux_vlan_config
|
568
|
+
- spec/fixtures/unit/util/xendomains/xendomains
|
569
|
+
- spec/fixtures/unit/virtual/sysfs_dmi_entries_raw.txt
|
570
|
+
- spec/fixtures/unit/zfs_version/freebsd_8.2
|
571
|
+
- spec/fixtures/unit/zfs_version/freebsd_9.0
|
572
|
+
- spec/fixtures/unit/zfs_version/linux-fuse_0.6.9
|
573
|
+
- spec/fixtures/unit/zfs_version/solaris_10
|
574
|
+
- spec/fixtures/unit/zfs_version/solaris_11
|
575
|
+
- spec/fixtures/unit/zpool_version/freebsd_8.2
|
576
|
+
- spec/fixtures/unit/zpool_version/freebsd_9.0
|
577
|
+
- spec/fixtures/unit/zpool_version/linux-fuse_0.6.9
|
578
|
+
- spec/fixtures/unit/zpool_version/solaris_10
|
579
|
+
- spec/fixtures/unit/zpool_version/solaris_11
|
580
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_1/guest
|
581
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_1/host
|
582
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_3/guest
|
583
|
+
- spec/fixtures/virtual/proc_self_status/vserver_2_3/host
|
584
|
+
- spec/integration/facter_spec.rb
|
585
|
+
- spec/lib/facter_spec/cpuinfo.rb
|
586
|
+
- spec/lib/facter_spec/windows_network.rb
|
587
|
+
- spec/puppetlabs_spec/files.rb
|
588
|
+
- spec/puppetlabs_spec/fixtures.rb
|
589
|
+
- spec/puppetlabs_spec/matchers.rb
|
590
|
+
- spec/puppetlabs_spec/verbose.rb
|
591
|
+
- spec/puppetlabs_spec_helper.rb
|
592
|
+
- spec/shared_contexts/platform.rb
|
593
|
+
- spec/shared_formats/parses.rb
|
594
|
+
- spec/spec_helper.rb
|
595
|
+
- spec/unit/application_spec.rb
|
596
|
+
- spec/unit/architecture_spec.rb
|
597
|
+
- spec/unit/blockdevices_spec.rb
|
598
|
+
- spec/unit/core/aggregate_spec.rb
|
599
|
+
- spec/unit/core/directed_graph_spec.rb
|
600
|
+
- spec/unit/core/execution/base_spec.rb
|
601
|
+
- spec/unit/core/execution/posix_spec.rb
|
602
|
+
- spec/unit/core/execution/windows_spec.rb
|
603
|
+
- spec/unit/core/execution_spec.rb
|
604
|
+
- spec/unit/core/logging_spec.rb
|
605
|
+
- spec/unit/core/resolvable_spec.rb
|
606
|
+
- spec/unit/core/suitable_spec.rb
|
607
|
+
- spec/unit/domain_spec.rb
|
608
|
+
- spec/unit/ec2_spec.rb
|
609
|
+
- spec/unit/facter_spec.rb
|
610
|
+
- spec/unit/filesystems_spec.rb
|
611
|
+
- spec/unit/hardwareisa_spec.rb
|
612
|
+
- spec/unit/hardwaremodel_spec.rb
|
613
|
+
- spec/unit/hostname_spec.rb
|
614
|
+
- spec/unit/id_spec.rb
|
615
|
+
- spec/unit/interfaces_spec.rb
|
616
|
+
- spec/unit/ipaddress6_spec.rb
|
617
|
+
- spec/unit/ipaddress_spec.rb
|
618
|
+
- spec/unit/kernel_spec.rb
|
619
|
+
- spec/unit/kernelmajversion_spec.rb
|
620
|
+
- spec/unit/kernelrelease_spec.rb
|
621
|
+
- spec/unit/kernelversion_spec.rb
|
622
|
+
- spec/unit/ldom_spec.rb
|
623
|
+
- spec/unit/lsbdistcodename_spec.rb
|
624
|
+
- spec/unit/lsbdistdescription_spec.rb
|
625
|
+
- spec/unit/lsbdistid_spec.rb
|
626
|
+
- spec/unit/lsbdistrelease_spec.rb
|
627
|
+
- spec/unit/lsbmajdistrelease_spec.rb
|
628
|
+
- spec/unit/lsbrelease_spec.rb
|
629
|
+
- spec/unit/macaddress_spec.rb
|
630
|
+
- spec/unit/manufacturer_spec.rb
|
631
|
+
- spec/unit/memory_spec.rb
|
632
|
+
- spec/unit/netmask_spec.rb
|
633
|
+
- spec/unit/operatingsystem_spec.rb
|
634
|
+
- spec/unit/operatingsystemmajrelease_spec.rb
|
635
|
+
- spec/unit/operatingsystemrelease_spec.rb
|
636
|
+
- spec/unit/physicalprocessorcount_spec.rb
|
637
|
+
- spec/unit/processor_spec.rb
|
638
|
+
- spec/unit/ps_spec.rb
|
639
|
+
- spec/unit/selinux_spec.rb
|
640
|
+
- spec/unit/ssh_spec.rb
|
641
|
+
- spec/unit/uniqueid_spec.rb
|
642
|
+
- spec/unit/uptime_spec.rb
|
643
|
+
- spec/unit/util/collection_spec.rb
|
644
|
+
- spec/unit/util/config_spec.rb
|
645
|
+
- spec/unit/util/confine_spec.rb
|
646
|
+
- spec/unit/util/directory_loader_spec.rb
|
647
|
+
- spec/unit/util/ec2_spec.rb
|
648
|
+
- spec/unit/util/fact_spec.rb
|
649
|
+
- spec/unit/util/file_read_spec.rb
|
650
|
+
- spec/unit/util/ip/windows_spec.rb
|
651
|
+
- spec/unit/util/ip_spec.rb
|
652
|
+
- spec/unit/util/loader_spec.rb
|
653
|
+
- spec/unit/util/macaddress_spec.rb
|
654
|
+
- spec/unit/util/macosx_spec.rb
|
655
|
+
- spec/unit/util/manufacturer_spec.rb
|
656
|
+
- spec/unit/util/normalization_spec.rb
|
657
|
+
- spec/unit/util/parser_spec.rb
|
658
|
+
- spec/unit/util/processor_spec.rb
|
659
|
+
- spec/unit/util/registry_spec.rb
|
660
|
+
- spec/unit/util/resolution_spec.rb
|
661
|
+
- spec/unit/util/solaris_zones_spec.rb
|
662
|
+
- spec/unit/util/uptime_spec.rb
|
663
|
+
- spec/unit/util/values_spec.rb
|
664
|
+
- spec/unit/util/virtual_spec.rb
|
665
|
+
- spec/unit/util/vlans_spec.rb
|
666
|
+
- spec/unit/util/wmi_spec.rb
|
667
|
+
- spec/unit/util/xendomains_spec.rb
|
668
|
+
- spec/unit/version_spec.rb
|
669
|
+
- spec/unit/virtual_spec.rb
|
670
|
+
- spec/unit/zfs_version_spec.rb
|
671
|
+
- spec/unit/zonename_spec.rb
|
672
|
+
- spec/unit/zones_spec.rb
|
673
|
+
- spec/unit/zpool_version_spec.rb
|
674
|
+
- spec/watchr.rb
|