facterdb 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -13
- data/.gitignore +5 -0
- data/CHANGELOG.md +7 -0
- data/README.md +2 -0
- data/facterdb.gemspec +2 -2
- data/facts/2.4/windows-2012 r2-x64.facts +77 -0
- data/facts/2.4/windows-7-x64.facts +79 -0
- data/facts/3.0/windows-2012 r2-x86_64.facts +101 -0
- data/facts/3.0/windows-7-x86_64.facts +101 -0
- data/facts/3.1/windows-2012 r2-x86_64.facts +130 -0
- data/facts/3.1/windows-7-x86_64.facts +130 -0
- data/facts/Vagrantfile +24 -0
- data/facts/Windows_README.md +11 -0
- data/facts/windows_get_facts.ps1 +60 -0
- data/facts/windows_packer/2012r2core.json +60 -0
- data/facts/windows_packer/answer_files/2012_r2core/Autounattend.xml +146 -0
- data/facts/windows_packer/scripts/PackerShutdown.bat +2 -0
- data/facts/windows_packer/scripts/SetupComplete-2012.cmd +1 -0
- data/facts/windows_packer/scripts/Test-Command.ps1 +11 -0
- data/facts/windows_packer/scripts/boxstarter.ps1 +12 -0
- data/facts/windows_packer/scripts/oracle.cer +0 -0
- data/facts/windows_packer/scripts/package.ps1 +44 -0
- data/facts/windows_packer/scripts/postunattend.xml +49 -0
- data/facts/windows_packer/scripts/provision.ps1 +86 -0
- data/facts/windows_packer/vagrant_templates/vagrantfile-windows.template +16 -0
- data/lib/facterdb/version.rb +1 -1
- metadata +45 -34
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
NjlmZGFjZjdiYmU2ZjNmNjAyMjdiNzliZjNhOTNjNGRmZGRhYzhhYg==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7b5d09293295738ebeb1ebbb8f49fa36b2702ca9
|
4
|
+
data.tar.gz: 085258d8359893bb0922eb0bff4d2f60236e1450
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
NTA3MjUxYjA3YjkxYTRkZDhiMDlmODY1YmZlZTk4ZDc2MTk5OTA4MmZmNzJl
|
11
|
-
YjYyMWVlZjM4ZjE0MjFjMmViOWI3YzYxMDViNzM1ODE5NWQyZWE=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
ZTk1NDRjYjRhMjZlN2QyOTdhNGNlZmI5NGI0MWVjODE2MjVlZmIyNDA4ZDRi
|
14
|
-
YmVmZWMyNWJjYjJhOWE0NWY3Mzk3YTQ1MGZhNGQwNTI1MGYxNmFjM2RlM2Q1
|
15
|
-
NGEyNDM4MWVkYWYwNjhmNmUyODU4MzQ2YWE0MGRkZWEwMWI4MDM=
|
6
|
+
metadata.gz: 58e386fe6cdb79a2495e30e0329447c68e20a55b18436592499edaeeb2b675d5d77a645bf19d1eb72d4448ddf6a5fbd513c75bc45ff54c939736b2321e17e7cf
|
7
|
+
data.tar.gz: 8628bbb38ae03d9e0f5a0d40fde154d54d182d10c595d361cc851cd3953dc4d24ddb483ece8a1e0d6f25ce6810eae3b2db6f049328527e4406eded5cf1c374e7
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [0.3.2](https://rubygems.org/gems/facterdb/versions/0.3.2) (2016-03-25)
|
4
|
+
[Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.1...0.3.2)
|
5
|
+
|
6
|
+
**Implemented enhancements:**
|
7
|
+
|
8
|
+
- Add facts for Windows 2012 r2 and Windows 7
|
9
|
+
|
3
10
|
## [0.3.1](https://rubygems.org/gems/facterdb/versions/0.3.1) (2016-01-06)
|
4
11
|
[Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.0...0.3.1)
|
5
12
|
|
data/README.md
CHANGED
data/facterdb.gemspec
CHANGED
@@ -19,8 +19,8 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.add_development_dependency 'coveralls'
|
20
20
|
s.add_development_dependency 'rake'
|
21
21
|
s.add_development_dependency 'rspec'
|
22
|
-
s.add_development_dependency 'github_changelog_generator'
|
23
|
-
s.add_runtime_dependency 'json'
|
22
|
+
s.add_development_dependency 'github_changelog_generator', '~> 1.10', '< 1.10.4'
|
23
|
+
s.add_runtime_dependency 'json' if RUBY_VERSION =~ /^1\.8/
|
24
24
|
s.add_runtime_dependency 'facter'
|
25
25
|
s.add_runtime_dependency 'jgrep'
|
26
26
|
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
{
|
2
|
+
"dir": "C:\\Program Files\\Puppet Labs\\Puppet\\facter",
|
3
|
+
"env_windows_installdir": "C:\\Program Files\\Puppet Labs\\Puppet",
|
4
|
+
"fqdn": "foo.example.com",
|
5
|
+
"architecture": "x64",
|
6
|
+
"kernel": "windows",
|
7
|
+
"virtual": "virtualbox",
|
8
|
+
"is_virtual": true,
|
9
|
+
"hardwaremodel": "x64",
|
10
|
+
"operatingsystem": "windows",
|
11
|
+
"os": {
|
12
|
+
"name": "windows",
|
13
|
+
"family": "windows",
|
14
|
+
"release": {
|
15
|
+
"major": "2012 R2",
|
16
|
+
"full": "2012 R2"
|
17
|
+
}
|
18
|
+
},
|
19
|
+
"facterversion": "2.4.4",
|
20
|
+
"hostname": "foo",
|
21
|
+
"id": "foo\\vagrant",
|
22
|
+
"interfaces": "Ethernet,Ethernet_2",
|
23
|
+
"ipaddress_ethernet": "10.0.2.15",
|
24
|
+
"macaddress_ethernet": "08:00:27:A4:27:B4",
|
25
|
+
"netmask_ethernet": "255.255.255.0",
|
26
|
+
"mtu_ethernet": 0,
|
27
|
+
"ipaddress_ethernet_2": "10.20.1.5",
|
28
|
+
"macaddress_ethernet_2": "08:00:27:8C:BB:02",
|
29
|
+
"netmask_ethernet_2": "255.255.255.0",
|
30
|
+
"mtu_ethernet_2": 0,
|
31
|
+
"ipaddress": "10.20.1.5",
|
32
|
+
"kernelmajversion": "6.3",
|
33
|
+
"kernelrelease": "6.3.9600",
|
34
|
+
"kernelversion": "6.3.9600",
|
35
|
+
"macaddress": "08:00:27:8C:BB:02",
|
36
|
+
"manufacturer": "innotek GmbH",
|
37
|
+
"serialnumber": "0",
|
38
|
+
"productname": "VirtualBox",
|
39
|
+
"memorysize": "1023.55 MB",
|
40
|
+
"memoryfree": "412.64 MB",
|
41
|
+
"memorysize_mb": "1023.55",
|
42
|
+
"memoryfree_mb": "412.64",
|
43
|
+
"netmask": "255.255.255.0",
|
44
|
+
"network_ethernet": "10.0.2.0",
|
45
|
+
"network_ethernet_2": "10.20.1.0",
|
46
|
+
"operatingsystemmajrelease": "2012 R2",
|
47
|
+
"operatingsystemrelease": "2012 R2",
|
48
|
+
"osfamily": "windows",
|
49
|
+
"path": "C:\\Program Files\\Puppet Labs\\Puppet\\puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\facter\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\cfacter\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\hiera\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\mcollective\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\sys\\ruby\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\sys\\tools\\bin;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\ProgramData\\chocolatey\\bin;C:\\Users\\vagrant\\AppData\\Roaming\\Boxstarter",
|
50
|
+
"physicalprocessorcount": 1,
|
51
|
+
"processors": {
|
52
|
+
"models": [
|
53
|
+
"Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz"
|
54
|
+
],
|
55
|
+
"count": 1,
|
56
|
+
"physicalcount": 1
|
57
|
+
},
|
58
|
+
"processor0": "Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz",
|
59
|
+
"processorcount": 1,
|
60
|
+
"ps": "tasklist.exe",
|
61
|
+
"puppetversion": "4.1.0",
|
62
|
+
"rubyplatform": "x64-mingw32",
|
63
|
+
"rubysitedir": "C:/Program Files/Puppet Labs/Puppet/sys/ruby/lib/ruby/site_ruby/2.1.0",
|
64
|
+
"rubyversion": "2.1.6",
|
65
|
+
"system32": "C:\\Windows\\system32",
|
66
|
+
"system_uptime": {
|
67
|
+
"seconds": 87,
|
68
|
+
"hours": 0,
|
69
|
+
"days": 0,
|
70
|
+
"uptime": "0:01 hours"
|
71
|
+
},
|
72
|
+
"timezone": "Coordinated Universal Time",
|
73
|
+
"uptime": "0:01 hours",
|
74
|
+
"uptime_days": 0,
|
75
|
+
"uptime_hours": 0,
|
76
|
+
"uptime_seconds": 87
|
77
|
+
}
|
@@ -0,0 +1,79 @@
|
|
1
|
+
{
|
2
|
+
"dir": "C:\\Program Files\\Puppet Labs\\Puppet\\facter",
|
3
|
+
"env_windows_installdir": "C:\\Program Files\\Puppet Labs\\Puppet",
|
4
|
+
"fqdn": "foo.example.com",
|
5
|
+
"architecture": "x64",
|
6
|
+
"kernel": "windows",
|
7
|
+
"virtual": "virtualbox",
|
8
|
+
"is_virtual": true,
|
9
|
+
"hardwaremodel": "x64",
|
10
|
+
"operatingsystem": "windows",
|
11
|
+
"os": {
|
12
|
+
"name": "windows",
|
13
|
+
"family": "windows",
|
14
|
+
"release": {
|
15
|
+
"major": "7",
|
16
|
+
"full": "7"
|
17
|
+
}
|
18
|
+
},
|
19
|
+
"facterversion": "2.4.4",
|
20
|
+
"gid": "Administrators",
|
21
|
+
"hardwareisa": "unknown",
|
22
|
+
"hostname": "foo",
|
23
|
+
"id": "foo\\vagrant",
|
24
|
+
"interfaces": "Local_Area_Connection,Local_Area_Connection_3",
|
25
|
+
"ipaddress_local_area_connection": "10.0.2.15",
|
26
|
+
"macaddress_local_area_connection": "08:00:27:67:C8:1B",
|
27
|
+
"netmask_local_area_connection": "255.255.255.0",
|
28
|
+
"mtu_local_area_connection": 0,
|
29
|
+
"ipaddress_local_area_connection_3": "10.20.1.5",
|
30
|
+
"macaddress_local_area_connection_3": "08:00:27:81:BB:CB",
|
31
|
+
"netmask_local_area_connection_3": "255.255.255.0",
|
32
|
+
"mtu_local_area_connection_3": 0,
|
33
|
+
"ipaddress": "10.20.1.5",
|
34
|
+
"kernelmajversion": "6.1",
|
35
|
+
"kernelrelease": "6.1.7601",
|
36
|
+
"kernelversion": "6.1.7601",
|
37
|
+
"macaddress": "08:00:27:81:BB:CB",
|
38
|
+
"manufacturer": "innotek GmbH",
|
39
|
+
"serialnumber": "0",
|
40
|
+
"productname": "VirtualBox",
|
41
|
+
"memorysize": "1023.55 MB",
|
42
|
+
"memoryfree": "370.01 MB",
|
43
|
+
"memorysize_mb": "1023.55",
|
44
|
+
"memoryfree_mb": "370.01",
|
45
|
+
"netmask": "255.255.255.0",
|
46
|
+
"network_local_area_connection": "10.0.2.0",
|
47
|
+
"network_local_area_connection_3": "10.20.1.0",
|
48
|
+
"operatingsystemmajrelease": "7",
|
49
|
+
"operatingsystemrelease": "7",
|
50
|
+
"osfamily": "windows",
|
51
|
+
"path": "C:\\Program Files\\Puppet Labs\\Puppet\\puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\facter\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\cfacter\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\hiera\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\mcollective\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\sys\\ruby\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\sys\\tools\\bin;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files (x86)\\Git\\bin; ",
|
52
|
+
"physicalprocessorcount": 1,
|
53
|
+
"processors": {
|
54
|
+
"models": [
|
55
|
+
"Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz"
|
56
|
+
],
|
57
|
+
"count": 1,
|
58
|
+
"physicalcount": 1
|
59
|
+
},
|
60
|
+
"processor0": "Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz",
|
61
|
+
"processorcount": 1,
|
62
|
+
"ps": "tasklist.exe",
|
63
|
+
"puppetversion": "4.1.0",
|
64
|
+
"rubyplatform": "x64-mingw32",
|
65
|
+
"rubysitedir": "C:/Program Files/Puppet Labs/Puppet/sys/ruby/lib/ruby/site_ruby/2.1.0",
|
66
|
+
"rubyversion": "2.1.6",
|
67
|
+
"system32": "C:\\Windows\\system32",
|
68
|
+
"system_uptime": {
|
69
|
+
"seconds": 87,
|
70
|
+
"hours": 0,
|
71
|
+
"days": 0,
|
72
|
+
"uptime": "0:01 hours"
|
73
|
+
},
|
74
|
+
"timezone": "Coordinated Universal Time",
|
75
|
+
"uptime": "0:01 hours",
|
76
|
+
"uptime_days": 0,
|
77
|
+
"uptime_hours": 0,
|
78
|
+
"uptime_seconds": 87
|
79
|
+
}
|
@@ -0,0 +1,101 @@
|
|
1
|
+
{
|
2
|
+
"dmi": {
|
3
|
+
"manufacturer": "innotek GmbH",
|
4
|
+
"product": {
|
5
|
+
"name": "VirtualBox",
|
6
|
+
"serial_number": "0"
|
7
|
+
}
|
8
|
+
},
|
9
|
+
"env_windows_installdir": "C:\\Program Files\\Puppet Labs\\Puppet",
|
10
|
+
"facterversion": "3.0.2",
|
11
|
+
"fqdn": "foo.example.com",
|
12
|
+
"identity": {
|
13
|
+
"user": "FOO\\vagrant"
|
14
|
+
},
|
15
|
+
"is_virtual": true,
|
16
|
+
"kernel": "windows",
|
17
|
+
"kernelmajversion": "6.3",
|
18
|
+
"kernelrelease": "6.3.9600",
|
19
|
+
"kernelversion": "6.3.9600",
|
20
|
+
"memory": {
|
21
|
+
"system": {
|
22
|
+
"available": "411.78 MiB",
|
23
|
+
"available_bytes": 431779840,
|
24
|
+
"capacity": "59.77%",
|
25
|
+
"total": "1023.55 MiB",
|
26
|
+
"total_bytes": 1073274880,
|
27
|
+
"used": "611.78 MiB",
|
28
|
+
"used_bytes": 641495040
|
29
|
+
}
|
30
|
+
},
|
31
|
+
"networking": {
|
32
|
+
"fqdn": "foo",
|
33
|
+
"hostname": "foo",
|
34
|
+
"interfaces": {
|
35
|
+
"Ethernet": {
|
36
|
+
"dhcp": "10.0.2.2",
|
37
|
+
"ip": "10.0.2.15",
|
38
|
+
"ip6": "fe80::6054:1dfe:23d3:e74c%12",
|
39
|
+
"mac": "08:00:27:A4:27:B4",
|
40
|
+
"mtu": 1500,
|
41
|
+
"netmask": "255.255.255.0",
|
42
|
+
"netmask6": "ffff:ffff:ffff:ffff::",
|
43
|
+
"network": "10.0.2.0",
|
44
|
+
"network6": "fe80::%12"
|
45
|
+
},
|
46
|
+
"Ethernet 2": {
|
47
|
+
"ip": "10.20.1.5",
|
48
|
+
"ip6": "fe80::d925:4b7b:603e:87cd%13",
|
49
|
+
"mac": "08:00:27:8C:BB:02",
|
50
|
+
"mtu": 1500,
|
51
|
+
"netmask": "255.255.255.0",
|
52
|
+
"netmask6": "ffff:ffff:ffff:ffff::",
|
53
|
+
"network": "10.20.1.0",
|
54
|
+
"network6": "fe80::%13"
|
55
|
+
}
|
56
|
+
},
|
57
|
+
"ip": "10.20.1.5",
|
58
|
+
"ip6": "fe80::d925:4b7b:603e:87cd%13",
|
59
|
+
"mac": "08:00:27:8C:BB:02",
|
60
|
+
"mtu": 1500,
|
61
|
+
"netmask": "255.255.255.0",
|
62
|
+
"netmask6": "ffff:ffff:ffff:ffff::",
|
63
|
+
"network": "10.20.1.0",
|
64
|
+
"network6": "fe80::%13"
|
65
|
+
},
|
66
|
+
"os": {
|
67
|
+
"architecture": "x64",
|
68
|
+
"family": "windows",
|
69
|
+
"hardware": "x86_64",
|
70
|
+
"name": "windows",
|
71
|
+
"release": {
|
72
|
+
"full": "2012 R2",
|
73
|
+
"major": "2012 R2"
|
74
|
+
},
|
75
|
+
"windows": {
|
76
|
+
"system32": "C:\\Windows\\system32"
|
77
|
+
}
|
78
|
+
},
|
79
|
+
"path": "C:\\Program Files\\Puppet Labs\\Puppet\\puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\facter\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\hiera\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\mcollective\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\sys\\ruby\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\sys\\tools\\bin;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\ProgramData\\chocolatey\\bin;C:\\Users\\vagrant\\AppData\\Roaming\\Boxstarter",
|
80
|
+
"processors": {
|
81
|
+
"count": 2,
|
82
|
+
"isa": "x64",
|
83
|
+
"models": [
|
84
|
+
"Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz"
|
85
|
+
],
|
86
|
+
"physicalcount": 1
|
87
|
+
},
|
88
|
+
"ruby": {
|
89
|
+
"platform": "x64-mingw32",
|
90
|
+
"sitedir": "C:/Program Files/Puppet Labs/Puppet/sys/ruby/lib/ruby/site_ruby/2.1.0",
|
91
|
+
"version": "2.1.6"
|
92
|
+
},
|
93
|
+
"system_uptime": {
|
94
|
+
"days": 0,
|
95
|
+
"hours": 0,
|
96
|
+
"seconds": 131,
|
97
|
+
"uptime": "0:02 hours"
|
98
|
+
},
|
99
|
+
"timezone": "Coordinated Universal Time",
|
100
|
+
"virtual": "virtualbox"
|
101
|
+
}
|
@@ -0,0 +1,101 @@
|
|
1
|
+
{
|
2
|
+
"dmi": {
|
3
|
+
"manufacturer": "innotek GmbH",
|
4
|
+
"product": {
|
5
|
+
"name": "VirtualBox",
|
6
|
+
"serial_number": "0"
|
7
|
+
}
|
8
|
+
},
|
9
|
+
"env_windows_installdir": "C:\\Program Files\\Puppet Labs\\Puppet",
|
10
|
+
"facterversion": "3.0.2",
|
11
|
+
"fqdn": "foo.example.com",
|
12
|
+
"identity": {
|
13
|
+
"user": "FOO\\vagrant"
|
14
|
+
},
|
15
|
+
"is_virtual": true,
|
16
|
+
"kernel": "windows",
|
17
|
+
"kernelmajversion": "6.1",
|
18
|
+
"kernelrelease": "6.1.7600",
|
19
|
+
"kernelversion": "6.1.7600",
|
20
|
+
"memory": {
|
21
|
+
"system": {
|
22
|
+
"available": "278.74 MiB",
|
23
|
+
"available_bytes": 292278272,
|
24
|
+
"capacity": "72.77%",
|
25
|
+
"total": "1023.55 MiB",
|
26
|
+
"total_bytes": 1073274880,
|
27
|
+
"used": "744.82 MiB",
|
28
|
+
"used_bytes": 780996608
|
29
|
+
}
|
30
|
+
},
|
31
|
+
"networking": {
|
32
|
+
"fqdn": "foo",
|
33
|
+
"hostname": "foo",
|
34
|
+
"interfaces": {
|
35
|
+
"Local Area Connection": {
|
36
|
+
"dhcp": "10.0.2.2",
|
37
|
+
"ip": "10.0.2.15",
|
38
|
+
"ip6": "fe80::700d:3fab:1d54:dc0d%11",
|
39
|
+
"mac": "08:00:27:67:C8:1B",
|
40
|
+
"mtu": 1500,
|
41
|
+
"netmask": "255.255.255.0",
|
42
|
+
"netmask6": "ffff:ffff:ffff:ffff::",
|
43
|
+
"network": "10.0.2.0",
|
44
|
+
"network6": "fe80::%11"
|
45
|
+
},
|
46
|
+
"Local Area Connection 3": {
|
47
|
+
"ip": "10.20.1.5",
|
48
|
+
"ip6": "fe80::15ec:2eb0:42ca:d968%13",
|
49
|
+
"mac": "08:00:27:81:BB:CB",
|
50
|
+
"mtu": 1500,
|
51
|
+
"netmask": "255.255.255.0",
|
52
|
+
"netmask6": "ffff:ffff:ffff:ffff::",
|
53
|
+
"network": "10.20.1.0",
|
54
|
+
"network6": "fe80::%13"
|
55
|
+
}
|
56
|
+
},
|
57
|
+
"ip": "10.20.1.5",
|
58
|
+
"ip6": "fe80::15ec:2eb0:42ca:d968%13",
|
59
|
+
"mac": "08:00:27:81:BB:CB",
|
60
|
+
"mtu": 1500,
|
61
|
+
"netmask": "255.255.255.0",
|
62
|
+
"netmask6": "ffff:ffff:ffff:ffff::",
|
63
|
+
"network": "10.20.1.0",
|
64
|
+
"network6": "fe80::%13"
|
65
|
+
},
|
66
|
+
"os": {
|
67
|
+
"architecture": "x64",
|
68
|
+
"family": "windows",
|
69
|
+
"hardware": "x86_64",
|
70
|
+
"name": "windows",
|
71
|
+
"release": {
|
72
|
+
"full": "7",
|
73
|
+
"major": "7"
|
74
|
+
},
|
75
|
+
"windows": {
|
76
|
+
"system32": "C:\\Windows\\system32"
|
77
|
+
}
|
78
|
+
},
|
79
|
+
"path": "C:\\Program Files\\Puppet Labs\\Puppet\\puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\facter\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\hiera\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\mcollective\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\sys\\ruby\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\sys\\tools\\bin;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files (x86)\\Git\\bin; ",
|
80
|
+
"processors": {
|
81
|
+
"count": 1,
|
82
|
+
"isa": "x64",
|
83
|
+
"models": [
|
84
|
+
"Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz"
|
85
|
+
],
|
86
|
+
"physicalcount": 1
|
87
|
+
},
|
88
|
+
"ruby": {
|
89
|
+
"platform": "x64-mingw32",
|
90
|
+
"sitedir": "C:/Program Files/Puppet Labs/Puppet/sys/ruby/lib/ruby/site_ruby/2.1.0",
|
91
|
+
"version": "2.1.6"
|
92
|
+
},
|
93
|
+
"system_uptime": {
|
94
|
+
"days": 0,
|
95
|
+
"hours": 0,
|
96
|
+
"seconds": 119,
|
97
|
+
"uptime": "0:01 hours"
|
98
|
+
},
|
99
|
+
"timezone": "Coordinated Universal Time",
|
100
|
+
"virtual": "virtualbox"
|
101
|
+
}
|
@@ -0,0 +1,130 @@
|
|
1
|
+
{
|
2
|
+
"dmi": {
|
3
|
+
"manufacturer": "innotek GmbH",
|
4
|
+
"product": {
|
5
|
+
"name": "VirtualBox",
|
6
|
+
"serial_number": "0"
|
7
|
+
}
|
8
|
+
},
|
9
|
+
"env_windows_installdir": "C:\\Program Files\\Puppet Labs\\Puppet",
|
10
|
+
"facterversion": "3.1.5",
|
11
|
+
"fqdn": "foo.example.com",
|
12
|
+
"identity": {
|
13
|
+
"user": "FOO\\vagrant"
|
14
|
+
},
|
15
|
+
"is_virtual": true,
|
16
|
+
"kernel": "windows",
|
17
|
+
"kernelmajversion": "6.3",
|
18
|
+
"kernelrelease": "6.3.9600",
|
19
|
+
"kernelversion": "6.3.9600",
|
20
|
+
"memory": {
|
21
|
+
"system": {
|
22
|
+
"available": "337.39 MiB",
|
23
|
+
"available_bytes": 353775616,
|
24
|
+
"capacity": "67.04%",
|
25
|
+
"total": "1023.55 MiB",
|
26
|
+
"total_bytes": 1073274880,
|
27
|
+
"used": "686.17 MiB",
|
28
|
+
"used_bytes": 719499264
|
29
|
+
}
|
30
|
+
},
|
31
|
+
"networking": {
|
32
|
+
"fqdn": "foo",
|
33
|
+
"hostname": "foo",
|
34
|
+
"interfaces": {
|
35
|
+
"Ethernet": {
|
36
|
+
"bindings": [
|
37
|
+
{
|
38
|
+
"address": "10.0.2.15",
|
39
|
+
"netmask": "255.255.255.0",
|
40
|
+
"network": "10.0.2.0"
|
41
|
+
}
|
42
|
+
],
|
43
|
+
"bindings6": [
|
44
|
+
{
|
45
|
+
"address": "fe80::6054:1dfe:23d3:e74c%12",
|
46
|
+
"netmask": "ffff:ffff:ffff:ffff::",
|
47
|
+
"network": "fe80::%12"
|
48
|
+
}
|
49
|
+
],
|
50
|
+
"dhcp": "10.0.2.2",
|
51
|
+
"ip": "10.0.2.15",
|
52
|
+
"ip6": "fe80::6054:1dfe:23d3:e74c%12",
|
53
|
+
"mac": "08:00:27:A4:27:B4",
|
54
|
+
"mtu": 1500,
|
55
|
+
"netmask": "255.255.255.0",
|
56
|
+
"netmask6": "ffff:ffff:ffff:ffff::",
|
57
|
+
"network": "10.0.2.0",
|
58
|
+
"network6": "fe80::%12"
|
59
|
+
},
|
60
|
+
"Ethernet 2": {
|
61
|
+
"bindings": [
|
62
|
+
{
|
63
|
+
"address": "10.20.1.5",
|
64
|
+
"netmask": "255.255.255.0",
|
65
|
+
"network": "10.20.1.0"
|
66
|
+
}
|
67
|
+
],
|
68
|
+
"bindings6": [
|
69
|
+
{
|
70
|
+
"address": "fe80::d925:4b7b:603e:87cd%13",
|
71
|
+
"netmask": "ffff:ffff:ffff:ffff::",
|
72
|
+
"network": "fe80::%13"
|
73
|
+
}
|
74
|
+
],
|
75
|
+
"ip": "10.20.1.5",
|
76
|
+
"ip6": "fe80::d925:4b7b:603e:87cd%13",
|
77
|
+
"mac": "08:00:27:8C:BB:02",
|
78
|
+
"mtu": 1500,
|
79
|
+
"netmask": "255.255.255.0",
|
80
|
+
"netmask6": "ffff:ffff:ffff:ffff::",
|
81
|
+
"network": "10.20.1.0",
|
82
|
+
"network6": "fe80::%13"
|
83
|
+
}
|
84
|
+
},
|
85
|
+
"ip": "10.20.1.5",
|
86
|
+
"ip6": "fe80::d925:4b7b:603e:87cd%13",
|
87
|
+
"mac": "08:00:27:8C:BB:02",
|
88
|
+
"mtu": 1500,
|
89
|
+
"netmask": "255.255.255.0",
|
90
|
+
"netmask6": "ffff:ffff:ffff:ffff::",
|
91
|
+
"network": "10.20.1.0",
|
92
|
+
"network6": "fe80::%13",
|
93
|
+
"primary": "Ethernet 2"
|
94
|
+
},
|
95
|
+
"os": {
|
96
|
+
"architecture": "x64",
|
97
|
+
"family": "windows",
|
98
|
+
"hardware": "x86_64",
|
99
|
+
"name": "windows",
|
100
|
+
"release": {
|
101
|
+
"full": "2012 R2",
|
102
|
+
"major": "2012 R2"
|
103
|
+
},
|
104
|
+
"windows": {
|
105
|
+
"system32": "C:\\Windows\\system32"
|
106
|
+
}
|
107
|
+
},
|
108
|
+
"path": "C:\\Program Files\\Puppet Labs\\Puppet\\puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\facter\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\hiera\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\mcollective\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\sys\\ruby\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\sys\\tools\\bin;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\ProgramData\\chocolatey\\bin;C:\\Users\\vagrant\\AppData\\Roaming\\Boxstarter",
|
109
|
+
"processors": {
|
110
|
+
"count": 2,
|
111
|
+
"isa": "x64",
|
112
|
+
"models": [
|
113
|
+
"Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz"
|
114
|
+
],
|
115
|
+
"physicalcount": 1
|
116
|
+
},
|
117
|
+
"ruby": {
|
118
|
+
"platform": "x64-mingw32",
|
119
|
+
"sitedir": "C:/Program Files/Puppet Labs/Puppet/sys/ruby/lib/ruby/site_ruby/2.1.0",
|
120
|
+
"version": "2.1.8"
|
121
|
+
},
|
122
|
+
"system_uptime": {
|
123
|
+
"days": 0,
|
124
|
+
"hours": 0,
|
125
|
+
"seconds": 162,
|
126
|
+
"uptime": "0:02 hours"
|
127
|
+
},
|
128
|
+
"timezone": "Coordinated Universal Time",
|
129
|
+
"virtual": "virtualbox"
|
130
|
+
}
|