概要
CHEFはプラットフォームの違いを吸収して自動設定できる便利なツールですが、実際は CHEFの Cookbook の recipe の Ruby コードの中で、Linux Distribution や クラウドベンダーを判定する必要があります。 このため CHEF には、サーバーの実行環境を取得する機能として、ohai があります。 さらに ohai には、クラウドベンダーのプラグインがあり、クラウドベンダーの固有情報を収集することができます。 ここでは、プライベート・クラウド、パブリック・クラウドのマルチクラウド環境下で共通のレシピが開発するためのコードを検討しました。
レシピ中でのクラウドの見分け方
ChefのOhaiで、クラウドベンダーを判定するためには、下準備が必要になります。この設定を行わないとクラウド対応のohaiプラグインが動作せず情報を取得することができません。
各クラウド会社のプラグインを動作させるための下準備
プロビジョニング時に実行されるスクリプトで、以下を実行することで、Ohaiのプラグインによって、クラウドベンダー特有の情報が収集されるようになります。 下記の softlayer.json となっている処を AWSでは、ec2.json に変更すればAWSのプラグインが動作する様になります。 同様に gce, digital_ocean, azure など環境に合わせて変更します。
mkdir -p /etc/chef/ohai/hints && touch ${_}/softlayer.json
さらに、SoftLayer の プロビジョニング・スクリプトからhintsを設定する例は、GitHub https://github.com/takara9/ProvisioningScript においてあります。
クラウドベンダー自動判定コード
case node['cloud']['provider']
when 'ec2'
AWS 用の設定コード
end
when 'softlayer'
SoftLayer 用の設定コード
end
when 'digital_ocean'
DigitalOcean 用の設定コード
end
when 'gce'
Google Compute Engine 用の設定コード
end
when 'azure'
Azure 用の設定コード
end
end
このOhaiのソースコードは、GitHub の https://github.com/chef/ohai/blob/master/lib/ohai/plugins/cloud.rb にありますから、他にどんなクラウドが判別できるか解るでしょう。 このコードには、OpenStackの判定コードも含まれている様ですから、自社のプライベート・クラウドとパブリック・クラウドで共通のレシピが作れると思います。
クラウドベンダー固有情報
次のSoftLayerの場合のリストとAWS-EC2の場合のリストは、GitHubに挙げたコード (GitHub https://github.com/takara9/ohai) を利用してリストしたものです。階層構造を字下げ(インデント)で表現していますから、例えば、CHEFのレシピからプライベート・ネットワーク側のIPアドレスを取得するには、node['cloud']['local_ipv4']とすれば取得することができます。
[cloud]にはクラウドの共通的な情報が格納され、[softlayer]や[ec2]にはクラウドベンダー特有の情報が格納されます。
[softlayer]
[public_fqdn]= centos7bm.takara.org
[local_ipv4]= 10.132.253.30
[public_ipv4]= 161.202.142.197
[region]= tok02
[instance_id]= 425202
[cloud]
[public_ips]= ["161.202.142.197"]
[private_ips]= ["10.132.253.30"]
[public_ipv4]= 161.202.142.197
[local_ipv4]= 10.132.253.30
[public_hostname]= centos7bm.takara.org
[provider]= softlayer
GitHubのOhai情報取得のコード(GitHub https://github.com/takara9/ohai) は、クラウドベンダーに関係なく動作するので、AWSなど他のクラウド・インスタンス上で動作します。 以下はAWSのEC2で動作させた場合のクラウドベンダー共通と固有のデータのリストです。
[ec2]
[ami_id]= ami-936d9d93
<中略>
[reservation_id]= r-c5469730
[security_groups]= ["launch-wizard-8"]
[cloud_v2]
[public_ipv4_addrs]= ["52.69.177.163"]
[local_ipv4_addrs]= ["172.31.24.251"]
[provider]= ec2
[public_hostname]= ec2-52-69-177-163.ap-northeast-1.compute.amazonaws.com
[local_hostname]= ip-172-31-24-251.ap-northeast-1.compute.internal
[public_ipv4]= 52.69.177.163
[local_ipv4]= 172.31.24.251
[cloud]
[public_ips]= ["52.69.177.163"]
[private_ips]= ["172.31.24.251"]
[public_ipv4]= 52.69.177.163
[public_hostname]= ec2-52-69-177-163.ap-northeast-1.compute.amazonaws.com
[local_ipv4]= 172.31.24.251
[local_hostname]= ip-172-31-24-251.ap-northeast-1.compute.internal
[provider]= ec2
SoftLayerベアメタルと仮想サーバーの判定コード
ベアメタルサーバーと仮想サーバーで設定を変更したいという場合があります。例えば、仮想サーバーのネットワーク・インタフェースのデバイス名は、eth0 か eth1 となりますが、物理サーバー(ベアメタル)では、bond0 と bind1 になり、対応するとなると、仮想か物理かを判定する必要が出てきます。
物理と仮想の判定コード
物理サーバーでは、KVMを稼働させていなくても、LinuxカーネルにKVM機能が最初から組み込まれていますから['virtualization']のデータが収集されます。そこで、次の様に node['virtualization']['role'] を利用して判定することができます。また、自社のプライベート・クラウドとパブリック・クラウドのハイブリッド環境を作り場合にも、このコードは適用できると思います。
case node['virtualization']['role']
when 'host'
物理サーバー用の設定コード
end
when 'guest'
仮想サーバー用の設定コード
end
end
仮想化に関するその他のデータ
GitHubのOhai情報取得のコード(GitHub https://github.com/takara9/ohai) を利用してリストしたデータです。
[virtualization]
[systems]
[kvm]= host
[system]= kvm
[role]= host
[virtualization]
[systems]
[xen]= guest
[system]= xen
[role]= guest
#あとがき
CHEFの機能を利用するには、Ohai の機能は大変重要なのですが、CHEFの初心者にも解りやすい情報が少ないですね。それから、SoftLayer のプラグインも最近バンドルされる様になったのですが、実際に利用するための情報が少ないと感じています。 この記事は、サーバーエンジニアの人材不足で困っておられるエンジニアの方々、そして、これからサーバー設定の自動化を始めたいと思っている方々の参考になれば幸いと思います。
参考情報
##参照URL
- HEARTBEATS ohaiを使ってサーバの情報をプログラムで扱おう http://heartbeats.jp/hbblog/2013/06/use-ohai.html
- LEARN CHEF DOC Ohai Custom Plugins https://docs.chef.io/ohai_custom.html
- GitHub Ohaiソースコード https://github.com/chef/ohai/blob/master/lib/ohai/plugins/cloud.rb
- Qiita Chef で Amazon VPC 内に配置したインスタンスの node["ec2"] が nil になってしまう場合 http://qiita.com/labocho/items/2f08cc3d249303122917
- Enabling EC2 Metadata in ohai http://geekblood.com/2015/03/13/enabling-ec2-metadata-in-ohai/
- Qiita Chef ohai の SoftLayerプラグインを利用したい http://qiita.com/MahoTakara/items/b9d395b062bb681a5589
ohaiリスト作成のクックブックの実行結果 全リスト
###CentOS7 SoftLayer Baremetal
[root@centos7bm ohai]# chef-solo -o ohai
[2015-12-13T01:24:48+09:00] WARN: *****************************************
[2015-12-13T01:24:48+09:00] WARN: Did not find config file: /etc/chef/solo.rb, using command line options.
[2015-12-13T01:24:48+09:00] WARN: *****************************************
Starting Chef Client, version 12.5.1
[2015-12-13T01:24:53+09:00] WARN: Run List override has been provided.
[2015-12-13T01:24:53+09:00] WARN: Original Run List: []
[2015-12-13T01:24:53+09:00] WARN: Overridden Run List: [recipe[ohai]]
Compiling Cookbooks...
============================================
[tags]= []
[cpu]
[0]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2124.750
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 0
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[1]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 1200.281
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 1
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[2]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2399.906
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 2
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[3]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2297.250
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 3
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[4]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2191.500
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 4
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[5]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 1983.093
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 5
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[6]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 1272.656
[cache_size]= 15360 KB
[physical_id]= 1
[core_id]= 0
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[7]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 1352.062
[cache_size]= 15360 KB
[physical_id]= 1
[core_id]= 1
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[8]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2018.250
[cache_size]= 15360 KB
[physical_id]= 1
[core_id]= 2
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[9]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2400.187
[cache_size]= 15360 KB
[physical_id]= 1
[core_id]= 3
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[10]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2399.906
[cache_size]= 15360 KB
[physical_id]= 1
[core_id]= 4
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[11]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2400.093
[cache_size]= 15360 KB
[physical_id]= 1
[core_id]= 5
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[12]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2400.000
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 0
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[13]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2399.906
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 1
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[14]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2158.406
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 2
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[15]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2080.125
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 3
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[16]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2401.500
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 4
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[17]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2301.187
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 5
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[18]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2340.468
[cache_size]= 15360 KB
[physical_id]= 1
[core_id]= 0
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[19]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2161.875
[cache_size]= 15360 KB
[physical_id]= 1
[core_id]= 1
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[20]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 1715.906
[cache_size]= 15360 KB
[physical_id]= 1
[core_id]= 2
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[21]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2218.125
[cache_size]= 15360 KB
[physical_id]= 1
[core_id]= 3
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[22]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 1455.375
[cache_size]= 15360 KB
[physical_id]= 1
[core_id]= 4
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[23]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[stepping]= 2
[mhz]= 2248.875
[cache_size]= 15360 KB
[physical_id]= 1
[core_id]= 5
[cores]= 6
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "dts", "acpi", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "tm", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "arat", "epb", "xsaveopt", "pln", "pts", "dtherm", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "avx2", "smep", "bmi2", "erms", "invpcid"]
[filesystem]
[/dev/sda3]
[kb_size]= 974973820
[kb_used]= 1537900
[kb_available]= 973435920
[percent_used]= 1%
[mount]= /
[total_inodes]= 975450112
[inodes_used]= 57356
[inodes_available]= 975392756
[inodes_percent_used]= 1%
[fs_type]= xfs
[mount_options]= ["rw", "relatime", "attr2", "inode64", "noquota"]
[uuid]= fea1bc0b-5c76-4240-9dad-acc62ee558b7
[devtmpfs]
[kb_size]= 32841060
[kb_used]= 0
[kb_available]= 32841060
[percent_used]= 0%
[mount]= /dev
[total_inodes]= 8210265
[inodes_used]= 484
[inodes_available]= 8209781
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "nosuid", "size=32841060k", "nr_inodes=8210265", "mode=755"]
[tmpfs]
[kb_size]= 32849732
[kb_used]= 0
[kb_available]= 32849732
[percent_used]= 0%
[mount]= /sys/fs/cgroup
[total_inodes]= 8212433
[inodes_used]= 13
[inodes_available]= 8212420
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "mode=755"]
[/dev/sda1]
[kb_size]= 258732
[kb_used]= 124948
[kb_available]= 133784
[percent_used]= 49%
[mount]= /boot
[total_inodes]= 262144
[inodes_used]= 337
[inodes_available]= 261807
[inodes_percent_used]= 1%
[fs_type]= xfs
[mount_options]= ["rw", "relatime", "attr2", "inode64", "noquota"]
[uuid]= 9e163e7a-62cf-4e14-baa0-5064d5c1ff35
[proc]
[mount]= /proc
[fs_type]= proc
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[sysfs]
[mount]= /sys
[fs_type]= sysfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[securityfs]
[mount]= /sys/kernel/security
[fs_type]= securityfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[devpts]
[mount]= /dev/pts
[fs_type]= devpts
[mount_options]= ["rw", "nosuid", "noexec", "relatime", "gid=5", "mode=620", "ptmxmode=000"]
[cgroup]
[mount]= /sys/fs/cgroup/hugetlb
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "hugetlb"]
[pstore]
[mount]= /sys/fs/pstore
[fs_type]= pstore
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[configfs]
[mount]= /sys/kernel/config
[fs_type]= configfs
[mount_options]= ["rw", "relatime"]
[systemd-1]
[mount]= /proc/sys/fs/binfmt_misc
[fs_type]= autofs
[mount_options]= ["rw", "relatime", "fd=39", "pgrp=1", "timeout=300", "minproto=5", "maxproto=5", "direct"]
[mqueue]
[mount]= /dev/mqueue
[fs_type]= mqueue
[mount_options]= ["rw", "relatime"]
[debugfs]
[mount]= /sys/kernel/debug
[fs_type]= debugfs
[mount_options]= ["rw", "relatime"]
[hugetlbfs]
[mount]= /dev/hugepages
[fs_type]= hugetlbfs
[mount_options]= ["rw", "relatime"]
[/dev/sda2]
[fs_type]= swap
[uuid]= 14ee56c2-f00c-45d7-9fe7-6fd06d6e1dfa
[rootfs]
[mount]= /
[fs_type]= rootfs
[mount_options]= ["rw"]
[kernel]
[name]= Linux
[release]= 3.10.0-229.20.1.el7.x86_64
[version]= #1 SMP Tue Nov 3 19:10:07 UTC 2015
[machine]= x86_64
[os]= GNU/Linux
[modules]
[ip6t_rpfilter]
[size]= 12546
[refcount]= 1
[ip6t_REJECT]
[size]= 12939
[refcount]= 2
[ipt_REJECT]
[size]= 12541
[refcount]= 2
[xt_conntrack]
[size]= 12760
[refcount]= 4
[ebtable_nat]
[size]= 12807
[refcount]= 0
[ebtable_broute]
[size]= 12731
[refcount]= 0
[ebtable_filter]
[size]= 12827
[refcount]= 0
[ebtables]
[size]= 30913
[refcount]= 3
[ip6table_nat]
[size]= 12864
[refcount]= 1
[nf_conntrack_ipv6]
[size]= 18738
[refcount]= 3
[nf_defrag_ipv6]
[size]= 34651
[refcount]= 1
[nf_nat_ipv6]
[size]= 14131
[refcount]= 1
[ip6table_mangle]
[size]= 12700
[refcount]= 1
[ip6table_security]
[size]= 12710
[refcount]= 1
[ip6table_raw]
[size]= 12683
[refcount]= 1
[ip6table_filter]
[size]= 12815
[refcount]= 1
[ip6_tables]
[size]= 27025
[refcount]= 5
[iptable_nat]
[size]= 12875
[refcount]= 1
[nf_conntrack_ipv4]
[size]= 14862
[refcount]= 3
[nf_defrag_ipv4]
[size]= 12729
[refcount]= 1
[nf_nat_ipv4]
[size]= 14115
[refcount]= 1
[nf_nat]
[size]= 26146
[refcount]= 2
[nf_conntrack]
[size]= 105702
[refcount]= 6
[iptable_mangle]
[size]= 12695
[refcount]= 1
[iptable_security]
[size]= 12705
[refcount]= 1
[iptable_raw]
[size]= 12678
[refcount]= 1
[iptable_filter]
[size]= 12810
[refcount]= 1
[ip_tables]
[size]= 27239
[refcount]= 5
[bridge]
[size]= 115385
[refcount]= 1
[stp]
[size]= 12976
[refcount]= 1
[llc]
[size]= 14552
[refcount]= 2
[bonding]
[size]= 129237
[refcount]= 0
[intel_powerclamp]
[size]= 18764
[refcount]= 0
[coretemp]
[size]= 13435
[refcount]= 0
[intel_rapl]
[size]= 18773
[refcount]= 0
[kvm_intel]
[size]= 148081
[refcount]= 0
[kvm]
[size]= 461126
[refcount]= 1
[crct10dif_pclmul]
[size]= 14289
[refcount]= 0
[crc32_pclmul]
[size]= 13113
[refcount]= 0
[crc32c_intel]
[size]= 22079
[refcount]= 0
[ghash_clmulni_intel]
[size]= 13259
[refcount]= 0
[iTCO_wdt]
[size]= 13480
[refcount]= 0
[iTCO_vendor_support]
[size]= 13718
[refcount]= 1
[sb_edac]
[size]= 26819
[refcount]= 0
[edac_core]
[size]= 57650
[refcount]= 1
[i2c_i801]
[size]= 18135
[refcount]= 0
[pcspkr]
[size]= 12718
[refcount]= 0
[aesni_intel]
[size]= 69884
[refcount]= 0
[lrw]
[size]= 13286
[refcount]= 1
[gf128mul]
[size]= 14951
[refcount]= 1
[glue_helper]
[size]= 13990
[refcount]= 1
[ablk_helper]
[size]= 13597
[refcount]= 1
[cryptd]
[size]= 20359
[refcount]= 3
[lpc_ich]
[size]= 21073
[refcount]= 0
[mei_me]
[size]= 18646
[refcount]= 0
[mfd_core]
[size]= 13435
[refcount]= 1
[mei]
[size]= 82723
[refcount]= 1
[ioatdma]
[size]= 67758
[refcount]= 0
[shpchp]
[size]= 37032
[refcount]= 0
[wmi]
[size]= 19070
[refcount]= 0
[ipmi_devintf]
[size]= 17572
[refcount]= 0
[ipmi_si]
[size]= 53353
[refcount]= 0
[ipmi_msghandler]
[size]= 45603
[refcount]= 2
[acpi_pad]
[size]= 116305
[refcount]= 0
[acpi_power_meter]
[size]= 18087
[refcount]= 0
[xfs]
[size]= 914983
[refcount]= 2
[libcrc32c]
[size]= 12644
[refcount]= 1
[sd_mod]
[size]= 45548
[refcount]= 4
[crc_t10dif]
[size]= 12714
[refcount]= 1
[crct10dif_common]
[size]= 12595
[refcount]= 2
[syscopyarea]
[size]= 12529
[refcount]= 0
[sysfillrect]
[size]= 12701
[refcount]= 0
[sysimgblt]
[size]= 12640
[refcount]= 0
[i2c_algo_bit]
[size]= 13413
[refcount]= 0
[drm_kms_helper]
[size]= 98226
[refcount]= 0
[ttm]
[size]= 93488
[refcount]= 0
[drm]
[size]= 311588
[refcount]= 2
[ixgbe]
[size]= 290979
[refcount]= 0
[ahci]
[size]= 29870
[refcount]= 3
[mdio]
[size]= 13807
[refcount]= 1
[libahci]
[size]= 32009
[refcount]= 1
[ptp]
[size]= 18933
[refcount]= 1
[libata]
[size]= 218854
[refcount]= 2
[i2c_core]
[size]= 40325
[refcount]= 4
[pps_core]
[size]= 19106
[refcount]= 1
[dca]
[size]= 15130
[refcount]= 2
[memory]
[swap]
[cached]= 0kB
[total]= 1048572kB
[free]= 1048572kB
[total]= 65699464kB
[free]= 64106572kB
[buffers]= 692kB
[cached]= 669024kB
[active]= 245496kB
[inactive]= 567284kB
[dirty]= 184kB
[writeback]= 0kB
[anon_pages]= 143096kB
[mapped]= 27932kB
[slab]= 140120kB
[slab_reclaimable]= 83672kB
[slab_unreclaim]= 56448kB
[page_tables]= 3672kB
[nfs_unstable]= 0kB
[bounce]= 0kB
[commit_limit]= 33898304kB
[committed_as]= 371924kB
[vmalloc_total]= 34359738367kB
[vmalloc_used]= 392120kB
[vmalloc_chunk]= 34325204340kB
[network]
[interfaces]
[lo]
[mtu]= 65536
[flags]= ["LOOPBACK", "UP", "LOWER_UP"]
[encapsulation]= Loopback
[addresses]
[127.0.0.1]
[family]= inet
[prefixlen]= 8
[netmask]= 255.0.0.0
[scope]= Node
[::1]
[family]= inet6
[prefixlen]= 128
[scope]= Node
[state]= unknown
[routes]= [{"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}]
[int0]
[type]= int
[number]= 0
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "SLAVE", "UP", "LOWER_UP"]
[encapsulation]= Ethernet
[addresses]
[00:25:90:FA:94:1C]
[family]= lladdr
[state]= up
[int1]
[type]= int
[number]= 1
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "SLAVE", "UP", "LOWER_UP"]
[encapsulation]= Ethernet
[addresses]
[00:25:90:FA:94:1D]
[family]= lladdr
[state]= up
[int2]
[type]= int
[number]= 2
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "SLAVE", "UP"]
[encapsulation]= Ethernet
[addresses]
[00:25:90:FA:94:1C]
[family]= lladdr
[state]= down
[int3]
[type]= int
[number]= 3
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "SLAVE", "UP"]
[encapsulation]= Ethernet
[addresses]
[00:25:90:FA:94:1D]
[family]= lladdr
[state]= down
[bond0]
[type]= bond
[number]= 0
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "MASTER", "UP", "LOWER_UP"]
[encapsulation]= Ethernet
[addresses]
[00:25:90:FA:94:1C]
[family]= lladdr
[10.132.253.30]
[family]= inet
[prefixlen]= 26
[netmask]= 255.255.255.192
[broadcast]= 10.132.253.63
[scope]= Global
[fe80::225:90ff:fefa:941c]
[family]= inet6
[prefixlen]= 64
[scope]= Link
[state]= up
[arp]
[10.132.253.1]= 00:00:0c:9f:f0:01
[routes]= [{"destination"=>"10.0.0.0/8", "family"=>"inet", "via"=>"10.132.253.1"}, {"destination"=>"10.132.253.0/26", "family"=>"inet", "scope"=>"link", "proto"=>"kernel", "src"=>"10.132.253.30"}, {"destination"=>"169.254.0.0/16", "family"=>"inet", "scope"=>"link", "metric"=>"1006"}, {"destination"=>"fe80::/64", "family"=>"inet6", "metric"=>"256", "proto"=>"kernel"}]
[bond1]
[type]= bond
[number]= 1
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "MASTER", "UP", "LOWER_UP"]
[encapsulation]= Ethernet
[addresses]
[00:25:90:FA:94:1D]
[family]= lladdr
[161.202.142.197]
[family]= inet
[prefixlen]= 28
[netmask]= 255.255.255.240
[broadcast]= 161.202.142.207
[scope]= Global
[fe80::225:90ff:fefa:941d]
[family]= inet6
[prefixlen]= 64
[scope]= Link
[state]= up
[arp]
[161.202.142.193]= 00:00:0c:9f:f0:01
[routes]= [{"destination"=>"default", "family"=>"inet", "via"=>"161.202.142.193"}, {"destination"=>"161.202.142.192/28", "family"=>"inet", "scope"=>"link", "proto"=>"kernel", "src"=>"161.202.142.197"}, {"destination"=>"169.254.0.0/16", "family"=>"inet", "scope"=>"link", "metric"=>"1007"}, {"destination"=>"fe80::/64", "family"=>"inet6", "metric"=>"256", "proto"=>"kernel"}]
[neighbour_inet6]
[fe80::e6c7:22ff:fe63:c1c1]= e4:c7:22:63:c1:c1
[fe80::e6c7:22ff:fe61:8341]= e4:c7:22:61:83:41
[default_interface]= bond1
[default_gateway]= 161.202.142.193
[counters]
[network]
[interfaces]
[lo]
[rx]
[bytes]= 1380
[packets]= 10
[errors]= 0
[drop]= 0
[overrun]= 0
[tx]
[bytes]= 1380
[packets]= 10
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[int0]
[tx]
[queuelen]= 1000
[bytes]= 733564
[packets]= 8906
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[rx]
[bytes]= 55239447
[packets]= 11359
[errors]= 0
[drop]= 0
[overrun]= 0
[int1]
[tx]
[queuelen]= 1000
[bytes]= 373132
[packets]= 6634
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[rx]
[bytes]= 47834180
[packets]= 8921
[errors]= 0
[drop]= 0
[overrun]= 0
[int2]
[tx]
[queuelen]= 1000
[bytes]= 0
[packets]= 0
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[rx]
[bytes]= 0
[packets]= 0
[errors]= 0
[drop]= 0
[overrun]= 0
[int3]
[tx]
[queuelen]= 1000
[bytes]= 0
[packets]= 0
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[rx]
[bytes]= 0
[packets]= 0
[errors]= 0
[drop]= 0
[overrun]= 0
[bond0]
[rx]
[bytes]= 55239447
[packets]= 11359
[errors]= 0
[drop]= 0
[overrun]= 0
[tx]
[bytes]= 733564
[packets]= 8906
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[bond1]
[rx]
[bytes]= 47834180
[packets]= 8921
[errors]= 0
[drop]= 0
[overrun]= 0
[tx]
[bytes]= 373132
[packets]= 6634
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[ipaddress]= 161.202.142.197
[macaddress]= 00:25:90:FA:94:1D
[ip6address]= fe80::225:90ff:fefa:941c
[lsb]
[os]= linux
[os_version]= 3.10.0-229.20.1.el7.x86_64
[platform]= centos
[platform_version]= 7.1.1503
[platform_family]= rhel
[uptime]= 18 minutes 59 seconds
[idletime]= 7 hours 34 minutes 40 seconds
[virtualization]
[systems]
[kvm]= host
[system]= kvm
[role]= host
[languages]
[c]
[glibc]
[version]= 2.17
[description]= GNU C Library (GNU libc) stable release version 2.17, by Roland McGrath et al.
[lua]
[version]= 5.1.4
[perl]
[version]= 5.16.3
[archname]= x86_64-linux-thread-multi
[php]
[version]= 5.4.16
[builddate]= Jun 23 2015 21:17:27
[zend_engine_version]= 2.4.0
[python]
[version]= 2.7.5
[builddate]= Jun 24 2015, 00:41:19
[ruby]
[platform]= x86_64-linux
[version]= 2.1.6
[release_date]= 2015-04-13
[target]= x86_64-unknown-linux-gnu
[target_cpu]= x86_64
[target_vendor]= unknown
[target_os]= linux
[host]= x86_64-unknown-linux-gnu
[host_cpu]= x86_64
[host_os]= linux-gnu
[host_vendor]= unknown
[bin_dir]= /opt/chef/embedded/bin
[ruby_bin]= /opt/chef/embedded/bin/ruby
[gems_dir]= /opt/chef/embedded/lib/ruby/gems/2.1.0
[gem_bin]= /opt/chef/embedded/bin/gem
[chef_packages]
[chef]
[version]= 12.5.1
[chef_root]= /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.5.1/lib
[ohai]
[version]= 8.7.0
[ohai_root]= /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/ohai-8.7.0/lib/ohai
[softlayer]
[public_fqdn]= centos7bm.takara.org
[local_ipv4]= 10.132.253.30
[public_ipv4]= 161.202.142.197
[region]= tok02
[instance_id]= 425202
[cloud]
[public_ips]= ["161.202.142.197"]
[private_ips]= ["10.132.253.30"]
[public_ipv4]= 161.202.142.197
[local_ipv4]= 10.132.253.30
[public_hostname]= centos7bm.takara.org
[provider]= softlayer
[command]
[ps]= ps -ef
[filesystem2]
[by_device]
[/dev/sda3]
[kb_size]= 974973820
[kb_used]= 1537900
[kb_available]= 973435920
[percent_used]= 1%
[total_inodes]= 975450112
[inodes_used]= 57356
[inodes_available]= 975392756
[inodes_percent_used]= 1%
[fs_type]= xfs
[mount_options]= ["rw", "relatime", "attr2", "inode64", "noquota"]
[uuid]= fea1bc0b-5c76-4240-9dad-acc62ee558b7
[mounts]= ["/"]
[devtmpfs]
[kb_size]= 32841060
[kb_used]= 0
[kb_available]= 32841060
[percent_used]= 0%
[total_inodes]= 8210265
[inodes_used]= 484
[inodes_available]= 8209781
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "nosuid", "size=32841060k", "nr_inodes=8210265", "mode=755"]
[mounts]= ["/dev"]
[tmpfs]
[kb_size]= 32849732
[kb_used]= 0
[kb_available]= 32849732
[percent_used]= 0%
[total_inodes]= 8212433
[inodes_used]= 13
[inodes_available]= 8212420
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "mode=755"]
[mounts]= ["/dev/shm", "/run", "/sys/fs/cgroup"]
[/dev/sda1]
[kb_size]= 258732
[kb_used]= 124948
[kb_available]= 133784
[percent_used]= 49%
[total_inodes]= 262144
[inodes_used]= 337
[inodes_available]= 261807
[inodes_percent_used]= 1%
[fs_type]= xfs
[mount_options]= ["rw", "relatime", "attr2", "inode64", "noquota"]
[uuid]= 9e163e7a-62cf-4e14-baa0-5064d5c1ff35
[mounts]= ["/boot"]
[proc]
[fs_type]= proc
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[mounts]= ["/proc"]
[sysfs]
[fs_type]= sysfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[mounts]= ["/sys"]
[securityfs]
[fs_type]= securityfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[mounts]= ["/sys/kernel/security"]
[devpts]
[fs_type]= devpts
[mount_options]= ["rw", "nosuid", "noexec", "relatime", "gid=5", "mode=620", "ptmxmode=000"]
[mounts]= ["/dev/pts"]
[cgroup]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "hugetlb"]
[mounts]= ["/sys/fs/cgroup/systemd", "/sys/fs/cgroup/cpuset", "/sys/fs/cgroup/cpu,cpuacct", "/sys/fs/cgroup/memory", "/sys/fs/cgroup/devices", "/sys/fs/cgroup/freezer", "/sys/fs/cgroup/net_cls", "/sys/fs/cgroup/blkio", "/sys/fs/cgroup/perf_event", "/sys/fs/cgroup/hugetlb"]
[pstore]
[fs_type]= pstore
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[mounts]= ["/sys/fs/pstore"]
[configfs]
[fs_type]= configfs
[mount_options]= ["rw", "relatime"]
[mounts]= ["/sys/kernel/config"]
[systemd-1]
[fs_type]= autofs
[mount_options]= ["rw", "relatime", "fd=39", "pgrp=1", "timeout=300", "minproto=5", "maxproto=5", "direct"]
[mounts]= ["/proc/sys/fs/binfmt_misc"]
[mqueue]
[fs_type]= mqueue
[mount_options]= ["rw", "relatime"]
[mounts]= ["/dev/mqueue"]
[debugfs]
[fs_type]= debugfs
[mount_options]= ["rw", "relatime"]
[mounts]= ["/sys/kernel/debug"]
[hugetlbfs]
[fs_type]= hugetlbfs
[mount_options]= ["rw", "relatime"]
[mounts]= ["/dev/hugepages"]
[/dev/sda]
[mounts]= []
[/dev/sda2]
[fs_type]= swap
[uuid]= 14ee56c2-f00c-45d7-9fe7-6fd06d6e1dfa
[mounts]= []
[/dev/sdb]
[mounts]= []
[rootfs]
[fs_type]= rootfs
[mount_options]= ["rw"]
[mounts]= ["/"]
[by_mountpoint]
[/]
[kb_size]= 974973820
[kb_used]= 1537900
[kb_available]= 973435920
[percent_used]= 1%
[total_inodes]= 975450112
[inodes_used]= 57356
[inodes_available]= 975392756
[inodes_percent_used]= 1%
[fs_type]= rootfs
[mount_options]= ["rw"]
[uuid]= fea1bc0b-5c76-4240-9dad-acc62ee558b7
[devices]= ["/dev/sda3", "rootfs"]
[/dev]
[kb_size]= 32841060
[kb_used]= 0
[kb_available]= 32841060
[percent_used]= 0%
[total_inodes]= 8210265
[inodes_used]= 484
[inodes_available]= 8209781
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "nosuid", "size=32841060k", "nr_inodes=8210265", "mode=755"]
[devices]= ["devtmpfs"]
[/dev/shm]
[kb_size]= 32849732
[kb_used]= 0
[kb_available]= 32849732
[percent_used]= 0%
[total_inodes]= 8212433
[inodes_used]= 1
[inodes_available]= 8212432
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev"]
[devices]= ["tmpfs"]
[/run]
[kb_size]= 32849732
[kb_used]= 9164
[kb_available]= 32840568
[percent_used]= 1%
[total_inodes]= 8212433
[inodes_used]= 586
[inodes_available]= 8211847
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev", "mode=755"]
[devices]= ["tmpfs"]
[/sys/fs/cgroup]
[kb_size]= 32849732
[kb_used]= 0
[kb_available]= 32849732
[percent_used]= 0%
[total_inodes]= 8212433
[inodes_used]= 13
[inodes_available]= 8212420
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "mode=755"]
[devices]= ["tmpfs"]
[/boot]
[kb_size]= 258732
[kb_used]= 124948
[kb_available]= 133784
[percent_used]= 49%
[total_inodes]= 262144
[inodes_used]= 337
[inodes_available]= 261807
[inodes_percent_used]= 1%
[fs_type]= xfs
[mount_options]= ["rw", "relatime", "attr2", "inode64", "noquota"]
[uuid]= 9e163e7a-62cf-4e14-baa0-5064d5c1ff35
[devices]= ["/dev/sda1"]
[/proc]
[fs_type]= proc
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[devices]= ["proc"]
[/sys]
[fs_type]= sysfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[devices]= ["sysfs"]
[/sys/kernel/security]
[fs_type]= securityfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[devices]= ["securityfs"]
[/dev/pts]
[fs_type]= devpts
[mount_options]= ["rw", "nosuid", "noexec", "relatime", "gid=5", "mode=620", "ptmxmode=000"]
[devices]= ["devpts"]
[/sys/fs/cgroup/systemd]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "xattr", "release_agent=/usr/lib/systemd/systemd-cgroups-agent", "name=systemd"]
[devices]= ["cgroup"]
[/sys/fs/pstore]
[fs_type]= pstore
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[devices]= ["pstore"]
[/sys/fs/cgroup/cpuset]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "cpuset"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/cpu,cpuacct]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "cpuacct", "cpu"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/memory]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "memory"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/devices]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "devices"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/freezer]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "freezer"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/net_cls]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "net_cls"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/blkio]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "blkio"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/perf_event]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "perf_event"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/hugetlb]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "hugetlb"]
[devices]= ["cgroup"]
[/sys/kernel/config]
[fs_type]= configfs
[mount_options]= ["rw", "relatime"]
[devices]= ["configfs"]
[/proc/sys/fs/binfmt_misc]
[fs_type]= autofs
[mount_options]= ["rw", "relatime", "fd=39", "pgrp=1", "timeout=300", "minproto=5", "maxproto=5", "direct"]
[devices]= ["systemd-1"]
[/dev/mqueue]
[fs_type]= mqueue
[mount_options]= ["rw", "relatime"]
[devices]= ["mqueue"]
[/sys/kernel/debug]
[fs_type]= debugfs
[mount_options]= ["rw", "relatime"]
[devices]= ["debugfs"]
[/dev/hugepages]
[fs_type]= hugetlbfs
[mount_options]= ["rw", "relatime"]
[devices]= ["hugetlbfs"]
[by_pair]
[/dev/sda3,/]
[device]= /dev/sda3
[kb_size]= 974973820
[kb_used]= 1537900
[kb_available]= 973435920
[percent_used]= 1%
[mount]= /
[total_inodes]= 975450112
[inodes_used]= 57356
[inodes_available]= 975392756
[inodes_percent_used]= 1%
[fs_type]= xfs
[mount_options]= ["rw", "relatime", "attr2", "inode64", "noquota"]
[uuid]= fea1bc0b-5c76-4240-9dad-acc62ee558b7
[devtmpfs,/dev]
[device]= devtmpfs
[kb_size]= 32841060
[kb_used]= 0
[kb_available]= 32841060
[percent_used]= 0%
[mount]= /dev
[total_inodes]= 8210265
[inodes_used]= 484
[inodes_available]= 8209781
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "nosuid", "size=32841060k", "nr_inodes=8210265", "mode=755"]
[tmpfs,/dev/shm]
[device]= tmpfs
[kb_size]= 32849732
[kb_used]= 0
[kb_available]= 32849732
[percent_used]= 0%
[mount]= /dev/shm
[total_inodes]= 8212433
[inodes_used]= 1
[inodes_available]= 8212432
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev"]
[tmpfs,/run]
[device]= tmpfs
[kb_size]= 32849732
[kb_used]= 9164
[kb_available]= 32840568
[percent_used]= 1%
[mount]= /run
[total_inodes]= 8212433
[inodes_used]= 586
[inodes_available]= 8211847
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev", "mode=755"]
[tmpfs,/sys/fs/cgroup]
[device]= tmpfs
[kb_size]= 32849732
[kb_used]= 0
[kb_available]= 32849732
[percent_used]= 0%
[mount]= /sys/fs/cgroup
[total_inodes]= 8212433
[inodes_used]= 13
[inodes_available]= 8212420
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "mode=755"]
[/dev/sda1,/boot]
[device]= /dev/sda1
[kb_size]= 258732
[kb_used]= 124948
[kb_available]= 133784
[percent_used]= 49%
[mount]= /boot
[total_inodes]= 262144
[inodes_used]= 337
[inodes_available]= 261807
[inodes_percent_used]= 1%
[fs_type]= xfs
[mount_options]= ["rw", "relatime", "attr2", "inode64", "noquota"]
[uuid]= 9e163e7a-62cf-4e14-baa0-5064d5c1ff35
[proc,/proc]
[device]= proc
[mount]= /proc
[fs_type]= proc
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[sysfs,/sys]
[device]= sysfs
[mount]= /sys
[fs_type]= sysfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[securityfs,/sys/kernel/security]
[device]= securityfs
[mount]= /sys/kernel/security
[fs_type]= securityfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[devpts,/dev/pts]
[device]= devpts
[mount]= /dev/pts
[fs_type]= devpts
[mount_options]= ["rw", "nosuid", "noexec", "relatime", "gid=5", "mode=620", "ptmxmode=000"]
[cgroup,/sys/fs/cgroup/systemd]
[device]= cgroup
[mount]= /sys/fs/cgroup/systemd
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "xattr", "release_agent=/usr/lib/systemd/systemd-cgroups-agent", "name=systemd"]
[pstore,/sys/fs/pstore]
[device]= pstore
[mount]= /sys/fs/pstore
[fs_type]= pstore
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[cgroup,/sys/fs/cgroup/cpuset]
[device]= cgroup
[mount]= /sys/fs/cgroup/cpuset
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "cpuset"]
[cgroup,/sys/fs/cgroup/cpu,cpuacct]
[device]= cgroup
[mount]= /sys/fs/cgroup/cpu,cpuacct
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "cpuacct", "cpu"]
[cgroup,/sys/fs/cgroup/memory]
[device]= cgroup
[mount]= /sys/fs/cgroup/memory
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "memory"]
[cgroup,/sys/fs/cgroup/devices]
[device]= cgroup
[mount]= /sys/fs/cgroup/devices
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "devices"]
[cgroup,/sys/fs/cgroup/freezer]
[device]= cgroup
[mount]= /sys/fs/cgroup/freezer
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "freezer"]
[cgroup,/sys/fs/cgroup/net_cls]
[device]= cgroup
[mount]= /sys/fs/cgroup/net_cls
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "net_cls"]
[cgroup,/sys/fs/cgroup/blkio]
[device]= cgroup
[mount]= /sys/fs/cgroup/blkio
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "blkio"]
[cgroup,/sys/fs/cgroup/perf_event]
[device]= cgroup
[mount]= /sys/fs/cgroup/perf_event
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "perf_event"]
[cgroup,/sys/fs/cgroup/hugetlb]
[device]= cgroup
[mount]= /sys/fs/cgroup/hugetlb
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "hugetlb"]
[configfs,/sys/kernel/config]
[device]= configfs
[mount]= /sys/kernel/config
[fs_type]= configfs
[mount_options]= ["rw", "relatime"]
[systemd-1,/proc/sys/fs/binfmt_misc]
[device]= systemd-1
[mount]= /proc/sys/fs/binfmt_misc
[fs_type]= autofs
[mount_options]= ["rw", "relatime", "fd=39", "pgrp=1", "timeout=300", "minproto=5", "maxproto=5", "direct"]
[mqueue,/dev/mqueue]
[device]= mqueue
[mount]= /dev/mqueue
[fs_type]= mqueue
[mount_options]= ["rw", "relatime"]
[debugfs,/sys/kernel/debug]
[device]= debugfs
[mount]= /sys/kernel/debug
[fs_type]= debugfs
[mount_options]= ["rw", "relatime"]
[hugetlbfs,/dev/hugepages]
[device]= hugetlbfs
[mount]= /dev/hugepages
[fs_type]= hugetlbfs
[mount_options]= ["rw", "relatime"]
[/dev/sda,]
[device]= /dev/sda
[/dev/sda2,]
[device]= /dev/sda2
[fs_type]= swap
[uuid]= 14ee56c2-f00c-45d7-9fe7-6fd06d6e1dfa
[/dev/sdb,]
[device]= /dev/sdb
[rootfs,/]
[device]= rootfs
[mount]= /
[fs_type]= rootfs
[mount_options]= ["rw"]
[dmi]
[dmidecode_version]= 2.12
[smbios_version]= 2.8
[structures]
[count]= 131
[size]= 6390
[table_location]= 0x7BAAC000
[bios]
[all_records]= [{"record_id"=>"0x0000", "size"=>"0", "application_identifier"=>"BIOS Information", "Vendor"=>"American Megatrends Inc.", "Version"=>"1.0c", "Release Date"=>"03/23/2015", "Address"=>"0xF0000", "Runtime Size"=>"64 kB", "ROM Size"=>"16384 kB", "Characteristics"=>{"PCI is supported"=>nil, "BIOS is upgradeable"=>nil, "BIOS shadowing is allowed"=>nil, "Boot from CD is supported"=>nil, "Selectable boot is supported"=>nil, "BIOS ROM is socketed"=>nil, "EDD is supported"=>nil, "5.25\"/1.2 MB floppy services are supported (int 13h)"=>nil, "3.5\"/720 kB floppy services are supported (int 13h)"=>nil, "3.5\"/2.88 MB floppy services are supported (int 13h)"=>nil, "Print screen service is supported (int 5h)"=>nil, "8042 keyboard services are supported (int 9h)"=>nil, "Serial services are supported (int 14h)"=>nil, "Printer services are supported (int 17h)"=>nil, "ACPI is supported"=>nil, "USB legacy is supported"=>nil, "BIOS boot specification is supported"=>nil, "Targeted content distribution is supported"=>nil, "UEFI is supported"=>nil}, "BIOS Revision"=>"5.6"}]
[vendor]= American Megatrends Inc.
[version]= 1.0c
[release_date]= 03/23/2015
[address]= 0xF0000
[runtime_size]= 64 kB
[rom_size]= 16384 kB
[bios_revision]= 5.6
[system]
[all_records]= [{"record_id"=>"0x0001", "size"=>"1", "application_identifier"=>"System Information", "Manufacturer"=>"Supermicro", "Product Name"=>"PIO-618U-T4T+-ST031", "Version"=>"0123456789", "Serial Number"=>"A16675614A05066", "UUID"=>"00000000-0000-0000-0000-002590FA941C", "Wake-up Type"=>"Power Switch", "SKU Number"=>"To be filled by O.E.M.", "Family"=>"To be filled by O.E.M."}]
[manufacturer]= Supermicro
[product_name]= PIO-618U-T4T+-ST031
[version]= 0123456789
[serial_number]= A16675614A05066
[uuid]= 00000000-0000-0000-0000-002590FA941C
[wake_up_type]= Power Switch
[sku_number]= To be filled by O.E.M.
[family]= To be filled by O.E.M.
[base_board]
[all_records]= [{"record_id"=>"0x0002", "size"=>"2", "application_identifier"=>"Base Board Information", "Manufacturer"=>"Supermicro", "Product Name"=>"X10DRU-i+", "Version"=>"1.01", "Serial Number"=>"OM149S026435", "Asset Tag"=>"To be filled by O.E.M.", "Features"=>{"Board is a hosting board"=>nil, "Board is replaceable"=>nil}, "Location In Chassis"=>"To be filled by O.E.M.", "Chassis Handle"=>"0x0003", "Type"=>"Motherboard", "Contained Object Handles"=>"0"}]
[manufacturer]= Supermicro
[product_name]= X10DRU-i+
[version]= 1.01
[serial_number]= OM149S026435
[asset_tag]= To be filled by O.E.M.
[location_in_chassis]= To be filled by O.E.M.
[chassis_handle]= 0x0003
[type]= Motherboard
[contained_object_handles]= 0
[chassis]
[all_records]= [{"record_id"=>"0x0003", "size"=>"3", "application_identifier"=>"Chassis Information", "Manufacturer"=>"Supermicro", "Type"=>"Other", "Lock"=>"Not Present", "Version"=>"0123456789", "Serial Number"=>"C819UAD43A10571", "Asset Tag"=>"To Be Filled By O.E.M.", "Boot-up State"=>"Safe", "Power Supply State"=>"Safe", "Thermal State"=>"Safe", "Security Status"=>"None", "OEM Information"=>"0x00000000", "Height"=>"Unspecified", "Number Of Power Cords"=>"1", "Contained Elements"=>{"<OUT OF SPEC> (0)"=>nil}, "SKU Number"=>"To be filled by O.E.M."}]
[manufacturer]= Supermicro
[type]= Other
[lock]= Not Present
[version]= 0123456789
[serial_number]= C819UAD43A10571
[asset_tag]= To Be Filled By O.E.M.
[boot_up_state]= Safe
[power_supply_state]= Safe
[thermal_state]= Safe
[security_status]= None
[oem_information]= 0x00000000
[height]= Unspecified
[number_of_power_cords]= 1
[sku_number]= To be filled by O.E.M.
[oem_strings]
[all_records]= [{"record_id"=>"0x0024", "size"=>"11", "application_identifier"=>"OEM Strings", "String 1"=>"Intel Haswell/Wellsburg/Grantley", "String 2"=>"Supermicro motherboard-X10 Series"}]
[string_1]= Intel Haswell/Wellsburg/Grantley
[string_2]= Supermicro motherboard-X10 Series
[processor]
[all_records]= [{"record_id"=>"0x0080", "size"=>"4", "application_identifier"=>"Processor Information", "Socket Designation"=>"CPU1", "Type"=>"Central Processor", "Family"=>"Xeon", "Manufacturer"=>"Intel", "ID"=>"F2 06 03 00 FF FB EB BF", "Signature"=>"Type 0, Family 6, Model 63, Stepping 2", "Flags"=>{"FPU (Floating-point unit on-chip)"=>nil, "VME (Virtual mode extension)"=>nil, "DE (Debugging extension)"=>nil, "PSE (Page size extension)"=>nil, "TSC (Time stamp counter)"=>nil, "MSR (Model specific registers)"=>nil, "PAE (Physical address extension)"=>nil, "MCE (Machine check exception)"=>nil, "CX8 (CMPXCHG8 instruction supported)"=>nil, "APIC (On-chip APIC hardware supported)"=>nil, "SEP (Fast system call)"=>nil, "MTRR (Memory type range registers)"=>nil, "PGE (Page global enable)"=>nil, "MCA (Machine check architecture)"=>nil, "CMOV (Conditional move instruction supported)"=>nil, "PAT (Page attribute table)"=>nil, "PSE-36 (36-bit page size extension)"=>nil, "CLFSH (CLFLUSH instruction supported)"=>nil, "DS (Debug store)"=>nil, "ACPI (ACPI supported)"=>nil, "MMX (MMX technology supported)"=>nil, "FXSR (FXSAVE and FXSTOR instructions supported)"=>nil, "SSE (Streaming SIMD extensions)"=>nil, "SSE2 (Streaming SIMD extensions 2)"=>nil, "SS (Self-snoop)"=>nil, "HTT (Multi-threading)"=>nil, "TM (Thermal monitor supported)"=>nil, "PBE (Pending break enabled)"=>nil}, "Version"=>"Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz", "Voltage"=>"1.8 V", "External Clock"=>"100 MHz", "Max Speed"=>"4000 MHz", "Current Speed"=>"2400 MHz", "Status"=>"Populated, Enabled", "Upgrade"=>"Socket LGA2011-3", "L1 Cache Handle"=>"0x007D", "L2 Cache Handle"=>"0x007E", "L3 Cache Handle"=>"0x007F", "Serial Number"=>"Not Specified", "Asset Tag"=>"Not Specified", "Part Number"=>"Not Specified", "Core Count"=>"6", "Core Enabled"=>"6", "Thread Count"=>"12", "Characteristics"=>{"64-bit capable"=>nil, "Multi-Core"=>nil, "Hardware Thread"=>nil, "Execute Protection"=>nil, "Enhanced Virtualization"=>nil, "Power/Performance Control"=>nil}}, {"record_id"=>"0x0084", "size"=>"4", "application_identifier"=>"Processor Information", "Socket Designation"=>"CPU2", "Type"=>"Central Processor", "Family"=>"Xeon", "Manufacturer"=>"Intel", "ID"=>"F2 06 03 00 FF FB EB BF", "Signature"=>"Type 0, Family 6, Model 63, Stepping 2", "Flags"=>{"FPU (Floating-point unit on-chip)"=>nil, "VME (Virtual mode extension)"=>nil, "DE (Debugging extension)"=>nil, "PSE (Page size extension)"=>nil, "TSC (Time stamp counter)"=>nil, "MSR (Model specific registers)"=>nil, "PAE (Physical address extension)"=>nil, "MCE (Machine check exception)"=>nil, "CX8 (CMPXCHG8 instruction supported)"=>nil, "APIC (On-chip APIC hardware supported)"=>nil, "SEP (Fast system call)"=>nil, "MTRR (Memory type range registers)"=>nil, "PGE (Page global enable)"=>nil, "MCA (Machine check architecture)"=>nil, "CMOV (Conditional move instruction supported)"=>nil, "PAT (Page attribute table)"=>nil, "PSE-36 (36-bit page size extension)"=>nil, "CLFSH (CLFLUSH instruction supported)"=>nil, "DS (Debug store)"=>nil, "ACPI (ACPI supported)"=>nil, "MMX (MMX technology supported)"=>nil, "FXSR (FXSAVE and FXSTOR instructions supported)"=>nil, "SSE (Streaming SIMD extensions)"=>nil, "SSE2 (Streaming SIMD extensions 2)"=>nil, "SS (Self-snoop)"=>nil, "HTT (Multi-threading)"=>nil, "TM (Thermal monitor supported)"=>nil, "PBE (Pending break enabled)"=>nil}, "Version"=>"Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz", "Voltage"=>"1.8 V", "External Clock"=>"100 MHz", "Max Speed"=>"4000 MHz", "Current Speed"=>"2400 MHz", "Status"=>"Populated, Enabled", "Upgrade"=>"Socket LGA2011-3", "L1 Cache Handle"=>"0x0081", "L2 Cache Handle"=>"0x0082", "L3 Cache Handle"=>"0x0083", "Serial Number"=>"Not Specified", "Asset Tag"=>"Not Specified", "Part Number"=>"Not Specified", "Core Count"=>"6", "Core Enabled"=>"6", "Thread Count"=>"12", "Characteristics"=>{"64-bit capable"=>nil, "Multi-Core"=>nil, "Hardware Thread"=>nil, "Execute Protection"=>nil, "Enhanced Virtualization"=>nil, "Power/Performance Control"=>nil}}]
[type]= Central Processor
[family]= Xeon
[manufacturer]= Intel
[id]= F2 06 03 00 FF FB EB BF
[signature]= Type 0, Family 6, Model 63, Stepping 2
[version]= Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz
[voltage]= 1.8 V
[external_clock]= 100 MHz
[max_speed]= 4000 MHz
[current_speed]= 2400 MHz
[status]= Populated, Enabled
[upgrade]= Socket LGA2011-3
[serial_number]= Not Specified
[asset_tag]= Not Specified
[part_number]= Not Specified
[core_count]= 6
[core_enabled]= 6
[thread_count]= 12
[hostname]= centos7bm
[machinename]= centos7bm.takara.org
[fqdn]= centos7bm.takara.org
[domain]= takara.org
[init_package]= systemd
[keys]
[ssh]
[host_rsa_public]= AAAAB3NzaC1yc2EAAAADAQABAAABAQDMxsDRuhqTrg3JkbJ6pV1ucqFAj7a8m8vmTkf8obrwX/RKI0BNW5qPCdp4mSo1nRuUXgqYvkQXn+aPTxTcnmllKlD2v985HBThZXcsvQZhBu8mgX9btOqDw0H2p2lIg1+qkBdh4Riz7ATHcf9yr39kf+PoLojHDJCCXX9HDxNqQpwP840Eq+X0txxdOMRaA2Ujy6xAbsO2KkPwZXD1kewhF7vordlHfcHx3cwW+Nj7kfsURWyaAHzPACL85HXvADsY4P9UyavjPezuOi37fc+aqPyFM5Q8pQe3Ir1zzCMXqx8ELNsO0k02g4/N9WpG8X+Bn4Ed3VI9y+REDrDDsVc5
[host_ecdsa_public]= AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLhs65y2fCKHK67A3MY26rGSDiWxG7v/HXsQJMnZz74crFsD1qiAMticTL2TZzfnmCa4UQ93wFZOdjsxb0Io2M8=
[host_ecdsa_type]= ecdsa-sha2-nistp256
[host_ed25519_public]= AAAAC3NzaC1lZDI1NTE5AAAAIKr/IvnhHxsuMElMjuoCPX2bKL5xYEDop7NJ9XKcdtE1
[block_device]
[sda]
[size]= 1953525168
[removable]= 0
[model]= ST1000NM0033-9ZM
[rev]= SN03
[state]= running
[timeout]= 30
[vendor]= ATA
[rotational]= 1
[sdb]
[size]= 1953525168
[removable]= 0
[model]= ST1000NM0033-9ZM
[rev]= SN03
[state]= running
[timeout]= 30
[vendor]= ATA
[rotational]= 1
[etc]
[passwd]
[root]
[dir]= /root
[shell]= /bin/bash
[gecos]= root
[bin]
[dir]= /bin
[shell]= /sbin/nologin
[gecos]= bin
[daemon]
[dir]= /sbin
[shell]= /sbin/nologin
[gecos]= daemon
[adm]
[dir]= /var/adm
[shell]= /sbin/nologin
[gecos]= adm
[lp]
[dir]= /var/spool/lpd
[shell]= /sbin/nologin
[gecos]= lp
[sync]
[dir]= /sbin
[shell]= /bin/sync
[gecos]= sync
[shutdown]
[dir]= /sbin
[shell]= /sbin/shutdown
[gecos]= shutdown
[halt]
[dir]= /sbin
[shell]= /sbin/halt
[gecos]= halt
[mail]
[dir]= /var/spool/mail
[shell]= /sbin/nologin
[gecos]= mail
[operator]
[dir]= /root
[shell]= /sbin/nologin
[gecos]= operator
[games]
[dir]= /usr/games
[shell]= /sbin/nologin
[gecos]= games
[ftp]
[dir]= /var/ftp
[shell]= /sbin/nologin
[gecos]= FTP User
[nobody]
[dir]= /
[shell]= /sbin/nologin
[gecos]= Nobody
[dbus]
[dir]= /
[shell]= /sbin/nologin
[gecos]= System message bus
[polkitd]
[dir]= /
[shell]= /sbin/nologin
[gecos]= User for polkitd
[avahi]
[dir]= /var/run/avahi-daemon
[shell]= /sbin/nologin
[gecos]= Avahi mDNS/DNS-SD Stack
[avahi-autoipd]
[dir]= /var/lib/avahi-autoipd
[shell]= /sbin/nologin
[gecos]= Avahi IPv4LL Stack
[ntp]
[dir]= /etc/ntp
[shell]= /sbin/nologin
[gecos]=
[postfix]
[dir]= /var/spool/postfix
[shell]= /sbin/nologin
[gecos]=
[sshd]
[dir]= /var/empty/sshd
[shell]= /sbin/nologin
[gecos]= Privilege-separated SSH
[tss]
[dir]= /dev/null
[shell]= /sbin/nologin
[gecos]= Account used by the trousers package to sandbox the tcsd daemon
[apache]
[dir]= /usr/share/httpd
[shell]= /sbin/nologin
[gecos]= Apache
[saslauth]
[dir]= /run/saslauthd
[shell]= /sbin/nologin
[gecos]= "Saslauthd user"
[group]
[root]
[members]= []
[bin]
[members]= []
[daemon]
[members]= []
[sys]
[members]= []
[adm]
[members]= []
[tty]
[members]= []
[disk]
[members]= []
[lp]
[members]= []
[mem]
[members]= []
[kmem]
[members]= []
[wheel]
[members]= []
[cdrom]
[members]= []
[mail]
[members]= ["postfix"]
[man]
[members]= []
[dialout]
[members]= []
[floppy]
[members]= []
[games]
[members]= []
[tape]
[members]= []
[video]
[members]= []
[ftp]
[members]= []
[lock]
[members]= []
[audio]
[members]= []
[nobody]
[members]= []
[users]
[members]= []
[utmp]
[members]= []
[utempter]
[members]= []
[ssh_keys]
[members]= []
[systemd-journal]
[members]= []
[dbus]
[members]= []
[polkitd]
[members]= []
[avahi]
[members]= []
[avahi-autoipd]
[members]= []
[dip]
[members]= []
[ntp]
[members]= []
[postdrop]
[members]= []
[postfix]
[members]= []
[sshd]
[members]= []
[tss]
[members]= []
[apache]
[members]= []
[saslauth]
[members]= []
[current_user]= root
[root_group]= root
[recipes]= ["ohai", "ohai::default"]
[expanded_run_list]= ["ohai::default"]
[roles]= []
[cookbooks]
[dummy]
[version]= 0.1.0
[ohai]
[version]= 0.1.0
============================================
###CentOS6 SoftLayer 仮想サーバー
[tags]= []
[kernel]
[name]= Linux
[release]= 2.6.32-573.7.1.el6.x86_64
[version]= #1 SMP Tue Sep 22 22:00:00 UTC 2015
[machine]= x86_64
[os]= GNU/Linux
[modules]
[ipt_REJECT]
[size]= 2351
[refcount]= 1
[nf_conntrack_ipv4]
[size]= 9154
[refcount]= 1
[nf_defrag_ipv4]
[size]= 1483
[refcount]= 1
[xt_state]
[size]= 1492
[refcount]= 1
[nf_conntrack]
[size]= 79206
[refcount]= 2
[iptable_filter]
[size]= 2793
[refcount]= 1
[ip_tables]
[size]= 17831
[refcount]= 1
[xenfs]
[size]= 5705
[refcount]= 1
[ipv6]
[size]= 335525
[refcount]= 10
[microcode]
[size]= 112205
[refcount]= 0
[xen_netfront]
[size]= 18994
[refcount]= 0
[ext3]
[size]= 240580
[refcount]= 2
[jbd]
[size]= 80652
[refcount]= 1
[mbcache]
[size]= 8193
[refcount]= 1
[xen_blkfront]
[size]= 21998
[refcount]= 5
[dm_mirror]
[size]= 14384
[refcount]= 0
[dm_region_hash]
[size]= 12085
[refcount]= 1
[dm_log]
[size]= 9930
[refcount]= 2
[dm_mod]
[size]= 99168
[refcount]= 2
[os]= linux
[os_version]= 2.6.32-573.7.1.el6.x86_64
[lsb]
[platform]= centos
[platform_version]= 6.7
[platform_family]= rhel
[memory]
[swap]
[cached]= 0kB
[total]= 2096444kB
[free]= 2096444kB
[total]= 1016108kB
[free]= 291356kB
[buffers]= 32272kB
[cached]= 494708kB
[active]= 274456kB
[inactive]= 354676kB
[dirty]= 4752kB
[writeback]= 0kB
[anon_pages]= 102196kB
[mapped]= 12868kB
[slab]= 77308kB
[slab_reclaimable]= 58196kB
[slab_unreclaim]= 19112kB
[page_tables]= 2836kB
[nfs_unstable]= 0kB
[bounce]= 0kB
[commit_limit]= 2604496kB
[committed_as]= 221776kB
[vmalloc_total]= 34359738367kB
[vmalloc_used]= 5748kB
[vmalloc_chunk]= 34359731548kB
[virtualization]
[systems]
[xen]= guest
[system]= xen
[role]= guest
[uptime]= 12 minutes 59 seconds
[idletime]= 11 minutes 58 seconds
[network]
[interfaces]
[lo]
[mtu]= 65536
[flags]= ["LOOPBACK", "UP", "LOWER_UP"]
[encapsulation]= Loopback
[addresses]
[127.0.0.1]
[family]= inet
[prefixlen]= 8
[netmask]= 255.0.0.0
[scope]= Node
[::1]
[family]= inet6
[prefixlen]= 128
[scope]= Node
[state]= unknown
[routes]= [{"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}]
[eth0]
[type]= eth
[number]= 0
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "UP", "LOWER_UP"]
[encapsulation]= Ethernet
[addresses]
[06:46:B6:03:DA:FE]
[family]= lladdr
[10.132.253.38]
[family]= inet
[prefixlen]= 26
[netmask]= 255.255.255.192
[broadcast]= 10.132.253.63
[scope]= Global
[fe80::446:b6ff:fe03:dafe]
[family]= inet6
[prefixlen]= 64
[scope]= Link
[state]= up
[arp]
[10.132.253.1]= 00:00:0c:9f:f0:01
[routes]= [{"destination"=>"10.132.253.0/26", "family"=>"inet", "scope"=>"link", "proto"=>"kernel", "src"=>"10.132.253.38"}, {"destination"=>"169.254.0.0/16", "family"=>"inet", "scope"=>"link", "metric"=>"1002"}, {"destination"=>"10.0.0.0/8", "family"=>"inet", "via"=>"10.132.253.1"}, {"destination"=>"fe80::/64", "family"=>"inet6", "metric"=>"256", "proto"=>"kernel"}]
[eth1]
[type]= eth
[number]= 1
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "UP", "LOWER_UP"]
[encapsulation]= Ethernet
[addresses]
[06:D5:00:13:71:B8]
[family]= lladdr
[161.202.142.202]
[family]= inet
[prefixlen]= 28
[netmask]= 255.255.255.240
[broadcast]= 161.202.142.207
[scope]= Global
[fe80::4d5:ff:fe13:71b8]
[family]= inet6
[prefixlen]= 64
[scope]= Link
[state]= up
[arp]
[161.202.142.193]= 00:00:0c:9f:f0:01
[routes]= [{"destination"=>"161.202.142.192/28", "family"=>"inet", "scope"=>"link", "proto"=>"kernel", "src"=>"161.202.142.202"}, {"destination"=>"169.254.0.0/16", "family"=>"inet", "scope"=>"link", "metric"=>"1003"}, {"destination"=>"default", "family"=>"inet", "via"=>"161.202.142.193"}, {"destination"=>"fe80::/64", "family"=>"inet6", "metric"=>"256", "proto"=>"kernel"}]
[neighbour_inet6]
[fe80::e6c7:22ff:fe63:c1c1]= e4:c7:22:63:c1:c1
[fe80::e6c7:22ff:fe61:8341]= e4:c7:22:61:83:41
[default_interface]= eth1
[default_gateway]= 161.202.142.193
[counters]
[network]
[interfaces]
[lo]
[rx]
[bytes]= 0
[packets]= 0
[errors]= 0
[drop]= 0
[overrun]= 0
[tx]
[bytes]= 0
[packets]= 0
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[eth0]
[tx]
[queuelen]= 1000
[bytes]= 1438057
[packets]= 21170
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[rx]
[bytes]= 73588841
[packets]= 50568
[errors]= 0
[drop]= 0
[overrun]= 0
[eth1]
[tx]
[queuelen]= 1000
[bytes]= 178647
[packets]= 3204
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[rx]
[bytes]= 44811648
[packets]= 30464
[errors]= 0
[drop]= 0
[overrun]= 0
[ipaddress]= 161.202.142.202
[macaddress]= 06:D5:00:13:71:B8
[ip6address]= fe80::446:b6ff:fe03:dafe
[cpu]
[0]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2683 v3 @ 2.00GHz
[stepping]= 2
[mhz]= 2000.074
[cache_size]= 35840 KB
[physical_id]= 5
[core_id]= 0
[cores]= 1
[flags]= ["fpu", "de", "tsc", "msr", "pae", "cx8", "sep", "cmov", "pat", "clflush", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "syscall", "nx", "lm", "constant_tsc", "up", "rep_good", "unfair_spinlock", "pni", "pclmulqdq", "ssse3", "fma", "cx16", "sse4_1", "sse4_2", "movbe", "popcnt", "tsc_deadline_timer", "f16c", "rdrand", "hypervisor", "lahf_lm", "abm", "arat", "epb", "pln", "pts", "dts", "fsgsbase", "erms"]
[filesystem]
[/dev/xvda2]
[kb_size]= 25544012
[kb_used]= 1564664
[kb_available]= 22681788
[percent_used]= 7%
[mount]= /
[total_inodes]= 1622016
[inodes_used]= 60404
[inodes_available]= 1561612
[inodes_percent_used]= 4%
[fs_type]= ext3
[mount_options]= ["rw", "noatime"]
[uuid]= cb8aa1fa-00c4-4cd6-9d7c-9c9df6124d6f
[tmpfs]
[kb_size]= 508052
[kb_used]= 0
[kb_available]= 508052
[percent_used]= 0%
[mount]= /dev/shm
[total_inodes]= 127013
[inodes_used]= 1
[inodes_available]= 127012
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw"]
[/dev/xvda1]
[kb_size]= 253871
[kb_used]= 64096
[kb_available]= 176668
[percent_used]= 27%
[mount]= /boot
[total_inodes]= 65536
[inodes_used]= 44
[inodes_available]= 65492
[inodes_percent_used]= 1%
[fs_type]= ext3
[mount_options]= ["rw", "noatime"]
[uuid]= 26d2872f-4dd5-49d4-abf4-5efc85637e7f
[proc]
[mount]= /proc
[fs_type]= proc
[mount_options]= ["rw"]
[sysfs]
[mount]= /sys
[fs_type]= sysfs
[mount_options]= ["rw"]
[devpts]
[mount]= /dev/pts
[fs_type]= devpts
[mount_options]= ["rw", "gid=5", "mode=620"]
[none]
[mount]= /proc/xen
[fs_type]= xenfs
[mount_options]= ["rw"]
[/dev/xvdb1]
[fs_type]= swap
[uuid]= d51fcca0-6b10-4934-a572-f3898dfd8840
[label]= SWAP-xvdb1
[rootfs]
[mount]= /
[fs_type]= rootfs
[mount_options]= ["rw"]
[devtmpfs]
[mount]= /dev
[fs_type]= devtmpfs
[mount_options]= ["rw", "relatime", "size=469076k", "nr_inodes=117269", "mode=755"]
[/proc/bus/usb]
[mount]= /proc/bus/usb
[fs_type]= usbfs
[mount_options]= ["rw", "relatime"]
[init_package]= init
[command]
[ps]= ps -ef
[languages]
[c]
[glibc]
[version]= 2.12
[description]= GNU C Library stable release version 2.12, by Roland McGrath et al.
[lua]
[version]= 5.1.4
[perl]
[version]= 5.10.1
[archname]= x86_64-linux-thread-multi
[ruby]
[platform]= x86_64-linux
[version]= 2.1.6
[release_date]= 2015-04-13
[target]= x86_64-unknown-linux-gnu
[target_cpu]= x86_64
[target_vendor]= unknown
[target_os]= linux
[host]= x86_64-unknown-linux-gnu
[host_cpu]= x86_64
[host_os]= linux-gnu
[host_vendor]= unknown
[bin_dir]= /opt/chef/embedded/bin
[ruby_bin]= /opt/chef/embedded/bin/ruby
[gems_dir]= /opt/chef/embedded/lib/ruby/gems/2.1.0
[gem_bin]= /opt/chef/embedded/bin/gem
[python]
[version]= 2.6.6
[builddate]= Jul 23 2015, 15:22:56
[softlayer]
[public_fqdn]= centos6.takara.org
[local_ipv4]= 10.132.253.38
[public_ipv4]= 161.202.142.202
[region]= tok02
[instance_id]= 14532559
[cloud]
[public_ips]= ["161.202.142.202"]
[private_ips]= ["10.132.253.38"]
[public_ipv4]= 161.202.142.202
[local_ipv4]= 10.132.253.38
[public_hostname]= centos6.takara.org
[provider]= softlayer
[keys]
[ssh]
[host_dsa_public]= AAAAB3NzaC1kc3MAAACBAO7qBdXsPGTUDohxLPwKX0j/sG+UxbaS+SSiubDlnA1yuoI2n0dGoi/1o1RKOANKZWFq9dwHetZnYNZd1HAKJsE6KVBJEYxS3Jee/Hh3vTZA3dKwhlTsun1Dws+207bdbXUnGbRlfwEfvIie01XVWyuSak229Yk8Fy9gnDNMN/JbAAAAFQDhX49d67/CKZwuCuKeIihnHUc+fwAAAIEA7cnHx8jxAACJGA4xRcrs1TxXgAjr6l1+BfSyQgclDgICdtXo8o0Mu0fA1BPTcDZ3cTXnAV+ESpGkpnVZnrPnKdXGHBnHvEnvd5NpKETqO3+MSdGQPj8+0CTiIzmKdWiTtE+8/55A7SvbY0oKHQ1G5e0peGAAGHDWqFzPkXoC18gAAACAJWtuPrAx7AbzDEnST69429D6PyfH3sxSSta1ZTVMMRdJCjr6RGYg+Yh+X/JLRUXUMNLFubPdGS5SAfOi4YTzh/S/eSwA3ZmgYoWvhTNHQ4Ky85/J78Py3QrQtswbs762RmF0Hx0/Jn1cMd01IdzoG1fjZVWW3ayDikk3FCfe2O8=
[host_rsa_public]= AAAAB3NzaC1yc2EAAAABIwAAAQEAwLt772Oa6w8hHBesFGIDiE9uHAOqPndn/bIfZfGiNY2pTAD/wK4bVbHxyyXZdhCbsFMGKZStgkJsFTfIHxNaH+KUO/rNoMxxLUbU4NfVLIAFoTHCDBkkRius6jZ8GP+c2x/BongDfPQo65hI6OYnPVoPabymb8LTFtswApy0Xf57Sk/GrFfEZt9seu5W+D0+2ktWkccsGkmWCa47Hm+NuOdTGKWwqHUZ3uA5U100dAybCrHywtZY8iLYSCicRbM6ukbG2rqM2hUkMhRdVqmH5KZwbBNIjzUTOjDJboY2YhKZMdbSwe7tdwtYk+ZnkA2Q6d7FnRwiEQEyYXWsjXfQKQ==
[hostname]= centos6
[machinename]= centos6.takara.org
[fqdn]= centos6.takara.org
[domain]= takara.org
[filesystem2]
[by_device]
[/dev/xvda2]
[kb_size]= 25544012
[kb_used]= 1564664
[kb_available]= 22681788
[percent_used]= 7%
[total_inodes]= 1622016
[inodes_used]= 60404
[inodes_available]= 1561612
[inodes_percent_used]= 4%
[fs_type]= ext3
[mount_options]= ["rw", "noatime"]
[uuid]= cb8aa1fa-00c4-4cd6-9d7c-9c9df6124d6f
[mounts]= ["/"]
[tmpfs]
[kb_size]= 508052
[kb_used]= 0
[kb_available]= 508052
[percent_used]= 0%
[total_inodes]= 127013
[inodes_used]= 1
[inodes_available]= 127012
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw"]
[mounts]= ["/dev/shm"]
[/dev/xvda1]
[kb_size]= 253871
[kb_used]= 64096
[kb_available]= 176668
[percent_used]= 27%
[total_inodes]= 65536
[inodes_used]= 44
[inodes_available]= 65492
[inodes_percent_used]= 1%
[fs_type]= ext3
[mount_options]= ["rw", "noatime"]
[uuid]= 26d2872f-4dd5-49d4-abf4-5efc85637e7f
[mounts]= ["/boot"]
[proc]
[fs_type]= proc
[mount_options]= ["rw"]
[mounts]= ["/proc"]
[sysfs]
[fs_type]= sysfs
[mount_options]= ["rw"]
[mounts]= ["/sys"]
[devpts]
[fs_type]= devpts
[mount_options]= ["rw", "gid=5", "mode=620"]
[mounts]= ["/dev/pts"]
[none]
[fs_type]= xenfs
[mount_options]= ["rw"]
[mounts]= ["/proc/sys/fs/binfmt_misc", "/proc/xen"]
[/dev/xvdb]
[mounts]= []
[/dev/xvdb1]
[fs_type]= swap
[uuid]= d51fcca0-6b10-4934-a572-f3898dfd8840
[label]= SWAP-xvdb1
[mounts]= []
[/dev/xvda]
[mounts]= []
[rootfs]
[fs_type]= rootfs
[mount_options]= ["rw"]
[mounts]= ["/"]
[devtmpfs]
[fs_type]= devtmpfs
[mount_options]= ["rw", "relatime", "size=469076k", "nr_inodes=117269", "mode=755"]
[mounts]= ["/dev"]
[/proc/bus/usb]
[fs_type]= usbfs
[mount_options]= ["rw", "relatime"]
[mounts]= ["/proc/bus/usb"]
[by_mountpoint]
[/]
[kb_size]= 25544012
[kb_used]= 1564664
[kb_available]= 22681788
[percent_used]= 7%
[total_inodes]= 1622016
[inodes_used]= 60404
[inodes_available]= 1561612
[inodes_percent_used]= 4%
[fs_type]= rootfs
[mount_options]= ["rw"]
[uuid]= cb8aa1fa-00c4-4cd6-9d7c-9c9df6124d6f
[devices]= ["/dev/xvda2", "rootfs"]
[/dev/shm]
[kb_size]= 508052
[kb_used]= 0
[kb_available]= 508052
[percent_used]= 0%
[total_inodes]= 127013
[inodes_used]= 1
[inodes_available]= 127012
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw"]
[devices]= ["tmpfs"]
[/boot]
[kb_size]= 253871
[kb_used]= 64096
[kb_available]= 176668
[percent_used]= 27%
[total_inodes]= 65536
[inodes_used]= 44
[inodes_available]= 65492
[inodes_percent_used]= 1%
[fs_type]= ext3
[mount_options]= ["rw", "noatime"]
[uuid]= 26d2872f-4dd5-49d4-abf4-5efc85637e7f
[devices]= ["/dev/xvda1"]
[/proc]
[fs_type]= proc
[mount_options]= ["rw"]
[devices]= ["proc"]
[/sys]
[fs_type]= sysfs
[mount_options]= ["rw"]
[devices]= ["sysfs"]
[/dev/pts]
[fs_type]= devpts
[mount_options]= ["rw", "gid=5", "mode=620"]
[devices]= ["devpts"]
[/proc/sys/fs/binfmt_misc]
[fs_type]= binfmt_misc
[mount_options]= ["rw"]
[devices]= ["none"]
[/proc/xen]
[fs_type]= xenfs
[mount_options]= ["rw"]
[devices]= ["none"]
[/dev]
[fs_type]= devtmpfs
[mount_options]= ["rw", "relatime", "size=469076k", "nr_inodes=117269", "mode=755"]
[devices]= ["devtmpfs"]
[/proc/bus/usb]
[fs_type]= usbfs
[mount_options]= ["rw", "relatime"]
[devices]= ["/proc/bus/usb"]
[by_pair]
[/dev/xvda2,/]
[device]= /dev/xvda2
[kb_size]= 25544012
[kb_used]= 1564664
[kb_available]= 22681788
[percent_used]= 7%
[mount]= /
[total_inodes]= 1622016
[inodes_used]= 60404
[inodes_available]= 1561612
[inodes_percent_used]= 4%
[fs_type]= ext3
[mount_options]= ["rw", "noatime"]
[uuid]= cb8aa1fa-00c4-4cd6-9d7c-9c9df6124d6f
[tmpfs,/dev/shm]
[device]= tmpfs
[kb_size]= 508052
[kb_used]= 0
[kb_available]= 508052
[percent_used]= 0%
[mount]= /dev/shm
[total_inodes]= 127013
[inodes_used]= 1
[inodes_available]= 127012
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw"]
[/dev/xvda1,/boot]
[device]= /dev/xvda1
[kb_size]= 253871
[kb_used]= 64096
[kb_available]= 176668
[percent_used]= 27%
[mount]= /boot
[total_inodes]= 65536
[inodes_used]= 44
[inodes_available]= 65492
[inodes_percent_used]= 1%
[fs_type]= ext3
[mount_options]= ["rw", "noatime"]
[uuid]= 26d2872f-4dd5-49d4-abf4-5efc85637e7f
[proc,/proc]
[device]= proc
[mount]= /proc
[fs_type]= proc
[mount_options]= ["rw"]
[sysfs,/sys]
[device]= sysfs
[mount]= /sys
[fs_type]= sysfs
[mount_options]= ["rw"]
[devpts,/dev/pts]
[device]= devpts
[mount]= /dev/pts
[fs_type]= devpts
[mount_options]= ["rw", "gid=5", "mode=620"]
[none,/proc/sys/fs/binfmt_misc]
[device]= none
[mount]= /proc/sys/fs/binfmt_misc
[fs_type]= binfmt_misc
[mount_options]= ["rw"]
[none,/proc/xen]
[device]= none
[mount]= /proc/xen
[fs_type]= xenfs
[mount_options]= ["rw"]
[/dev/xvdb,]
[device]= /dev/xvdb
[/dev/xvdb1,]
[device]= /dev/xvdb1
[fs_type]= swap
[uuid]= d51fcca0-6b10-4934-a572-f3898dfd8840
[label]= SWAP-xvdb1
[/dev/xvda,]
[device]= /dev/xvda
[rootfs,/]
[device]= rootfs
[mount]= /
[fs_type]= rootfs
[mount_options]= ["rw"]
[devtmpfs,/dev]
[device]= devtmpfs
[mount]= /dev
[fs_type]= devtmpfs
[mount_options]= ["rw", "relatime", "size=469076k", "nr_inodes=117269", "mode=755"]
[/proc/bus/usb,/proc/bus/usb]
[device]= /proc/bus/usb
[mount]= /proc/bus/usb
[fs_type]= usbfs
[mount_options]= ["rw", "relatime"]
[chef_packages]
[ohai]
[version]= 8.7.0
[ohai_root]= /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/ohai-8.7.0/lib/ohai
[chef]
[version]= 12.5.1
[chef_root]= /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.5.1/lib
[root_group]= root
[dmi]
[dmidecode_version]= 2.12
[block_device]
[ram0]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram1]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram2]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram3]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram4]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram5]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram6]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram7]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram8]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram9]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram10]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram11]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram12]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram13]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram14]
[size]= 32768
[removable]= 0
[rotational]= 1
[ram15]
[size]= 32768
[removable]= 0
[rotational]= 1
[loop0]
[size]= 0
[removable]= 0
[rotational]= 1
[loop1]
[size]= 0
[removable]= 0
[rotational]= 1
[loop2]
[size]= 0
[removable]= 0
[rotational]= 1
[loop3]
[size]= 0
[removable]= 0
[rotational]= 1
[loop4]
[size]= 0
[removable]= 0
[rotational]= 1
[loop5]
[size]= 0
[removable]= 0
[rotational]= 1
[loop6]
[size]= 0
[removable]= 0
[rotational]= 1
[loop7]
[size]= 0
[removable]= 0
[rotational]= 1
[xvdb]
[size]= 4194304
[removable]= 0
[rotational]= 0
[xvda]
[size]= 52428800
[removable]= 0
[rotational]= 0
[etc]
[passwd]
[root]
[dir]= /root
[shell]= /bin/bash
[gecos]= root
[bin]
[dir]= /bin
[shell]= /sbin/nologin
[gecos]= bin
[daemon]
[dir]= /sbin
[shell]= /sbin/nologin
[gecos]= daemon
[adm]
[dir]= /var/adm
[shell]= /sbin/nologin
[gecos]= adm
[lp]
[dir]= /var/spool/lpd
[shell]= /sbin/nologin
[gecos]= lp
[sync]
[dir]= /sbin
[shell]= /bin/sync
[gecos]= sync
[shutdown]
[dir]= /sbin
[shell]= /sbin/shutdown
[gecos]= shutdown
[halt]
[dir]= /sbin
[shell]= /sbin/halt
[gecos]= halt
[mail]
[dir]= /var/spool/mail
[shell]= /sbin/nologin
[gecos]= mail
[uucp]
[dir]= /var/spool/uucp
[shell]= /sbin/nologin
[gecos]= uucp
[operator]
[dir]= /root
[shell]= /sbin/nologin
[gecos]= operator
[games]
[dir]= /usr/games
[shell]= /sbin/nologin
[gecos]= games
[gopher]
[dir]= /var/gopher
[shell]= /sbin/nologin
[gecos]= gopher
[ftp]
[dir]= /var/ftp
[shell]= /sbin/nologin
[gecos]= FTP User
[nobody]
[dir]= /
[shell]= /sbin/nologin
[gecos]= Nobody
[dbus]
[dir]= /
[shell]= /sbin/nologin
[gecos]= System message bus
[vcsa]
[dir]= /dev
[shell]= /sbin/nologin
[gecos]= virtual console memory owner
[abrt]
[dir]= /etc/abrt
[shell]= /sbin/nologin
[gecos]=
[haldaemon]
[dir]= /
[shell]= /sbin/nologin
[gecos]= HAL daemon
[ntp]
[dir]= /etc/ntp
[shell]= /sbin/nologin
[gecos]=
[saslauth]
[dir]= /var/empty/saslauth
[shell]= /sbin/nologin
[gecos]= "Saslauthd user"
[postfix]
[dir]= /var/spool/postfix
[shell]= /sbin/nologin
[gecos]=
[sshd]
[dir]= /var/empty/sshd
[shell]= /sbin/nologin
[gecos]= Privilege-separated SSH
[tcpdump]
[dir]= /
[shell]= /sbin/nologin
[gecos]=
[group]
[root]
[members]= []
[bin]
[members]= ["bin", "daemon"]
[daemon]
[members]= ["bin", "daemon"]
[sys]
[members]= ["bin", "adm"]
[adm]
[members]= ["adm", "daemon"]
[tty]
[members]= []
[disk]
[members]= []
[lp]
[members]= ["daemon"]
[mem]
[members]= []
[kmem]
[members]= []
[wheel]
[members]= []
[mail]
[members]= ["mail", "postfix"]
[uucp]
[members]= []
[man]
[members]= []
[games]
[members]= []
[gopher]
[members]= []
[video]
[members]= []
[dip]
[members]= []
[ftp]
[members]= []
[lock]
[members]= []
[audio]
[members]= []
[nobody]
[members]= []
[users]
[members]= []
[dbus]
[members]= []
[utmp]
[members]= []
[utempter]
[members]= []
[floppy]
[members]= []
[vcsa]
[members]= []
[abrt]
[members]= []
[cdrom]
[members]= []
[tape]
[members]= []
[dialout]
[members]= []
[haldaemon]
[members]= ["haldaemon"]
[ntp]
[members]= []
[saslauth]
[members]= []
[postdrop]
[members]= []
[postfix]
[members]= []
[stapusr]
[members]= []
[stapsys]
[members]= []
[stapdev]
[members]= []
[sshd]
[members]= []
[tcpdump]
[members]= []
[slocate]
[members]= []
[current_user]= root
[recipes]= ["ohai", "ohai::default"]
[expanded_run_list]= ["ohai::default"]
[roles]= []
[cookbooks]
[dummy]
[version]= 0.1.0
[ohai]
[version]= 0.1.0
###CentOS7 SoftLayer 仮想サーバー
[root@centos7 cookbooks]# chef-solo -o ohai
[2015-12-13T00:24:34+09:00] WARN: *****************************************
[2015-12-13T00:24:34+09:00] WARN: Did not find config file: /etc/chef/solo.rb, using command line options.
[2015-12-13T00:24:34+09:00] WARN: *****************************************
Starting Chef Client, version 12.5.1
[2015-12-13T00:24:39+09:00] WARN: Run List override has been provided.
[2015-12-13T00:24:39+09:00] WARN: Original Run List: []
[2015-12-13T00:24:39+09:00] WARN: Overridden Run List: [recipe[ohai]]
Compiling Cookbooks...
============================================
[tags]= []
[languages]
[perl]
[version]= 5.16.3
[archname]= x86_64-linux-thread-multi
[ruby]
[platform]= x86_64-linux
[version]= 2.1.6
[release_date]= 2015-04-13
[target]= x86_64-unknown-linux-gnu
[target_cpu]= x86_64
[target_vendor]= unknown
[target_os]= linux
[host]= x86_64-unknown-linux-gnu
[host_cpu]= x86_64
[host_os]= linux-gnu
[host_vendor]= unknown
[bin_dir]= /opt/chef/embedded/bin
[ruby_bin]= /opt/chef/embedded/bin/ruby
[gems_dir]= /opt/chef/embedded/lib/ruby/gems/2.1.0
[gem_bin]= /opt/chef/embedded/bin/gem
[c]
[glibc]
[version]= 2.17
[description]= GNU C Library (GNU libc) stable release version 2.17, by Roland McGrath et al.
[lua]
[version]= 5.1.4
[python]
[version]= 2.7.5
[builddate]= Jun 24 2015, 00:41:19
[network]
[interfaces]
[lo]
[mtu]= 65536
[flags]= ["LOOPBACK", "UP", "LOWER_UP"]
[encapsulation]= Loopback
[addresses]
[127.0.0.1]
[family]= inet
[prefixlen]= 8
[netmask]= 255.0.0.0
[scope]= Node
[::1]
[family]= inet6
[prefixlen]= 128
[scope]= Node
[state]= unknown
[routes]= [{"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}, {"destination"=>"unreachable", "family"=>"inet6", "metric"=>"1024"}]
[eth0]
[type]= eth
[number]= 0
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "UP", "LOWER_UP"]
[encapsulation]= Ethernet
[addresses]
[06:FA:5C:53:59:4D]
[family]= lladdr
[10.132.253.30]
[family]= inet
[prefixlen]= 26
[netmask]= 255.255.255.192
[broadcast]= 10.132.253.63
[scope]= Global
[fe80::4fa:5cff:fe53:594d]
[family]= inet6
[prefixlen]= 64
[scope]= Link
[state]= up
[arp]
[10.132.253.1]= 00:00:0c:9f:f0:01
[routes]= [{"destination"=>"10.0.0.0/8", "family"=>"inet", "via"=>"10.132.253.1"}, {"destination"=>"10.132.253.0/26", "family"=>"inet", "scope"=>"link", "proto"=>"kernel", "src"=>"10.132.253.30"}, {"destination"=>"169.254.0.0/16", "family"=>"inet", "scope"=>"link", "metric"=>"1002"}, {"destination"=>"fe80::/64", "family"=>"inet6", "metric"=>"256", "proto"=>"kernel"}]
[eth1]
[type]= eth
[number]= 1
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "UP", "LOWER_UP"]
[encapsulation]= Ethernet
[addresses]
[06:0C:FD:AD:15:B4]
[family]= lladdr
[161.202.142.197]
[family]= inet
[prefixlen]= 28
[netmask]= 255.255.255.240
[broadcast]= 161.202.142.207
[scope]= Global
[fe80::40c:fdff:fead:15b4]
[family]= inet6
[prefixlen]= 64
[scope]= Link
[state]= up
[arp]
[161.202.142.193]= 00:00:0c:9f:f0:01
[routes]= [{"destination"=>"default", "family"=>"inet", "via"=>"161.202.142.193"}, {"destination"=>"161.202.142.192/28", "family"=>"inet", "scope"=>"link", "proto"=>"kernel", "src"=>"161.202.142.197"}, {"destination"=>"169.254.0.0/16", "family"=>"inet", "scope"=>"link", "metric"=>"1003"}, {"destination"=>"fe80::/64", "family"=>"inet6", "metric"=>"256", "proto"=>"kernel"}]
[neighbour_inet6]
[fe80::e6c7:22ff:fe63:c1c1]= e4:c7:22:63:c1:c1
[fe80::e6c7:22ff:fe61:8341]= e4:c7:22:61:83:41
[default_interface]= eth1
[default_gateway]= 161.202.142.193
[counters]
[network]
[interfaces]
[lo]
[rx]
[bytes]= 0
[packets]= 0
[errors]= 0
[drop]= 0
[overrun]= 0
[tx]
[bytes]= 0
[packets]= 0
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[eth0]
[tx]
[queuelen]= 1000
[bytes]= 851151
[packets]= 12027
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[rx]
[bytes]= 81362637
[packets]= 56522
[errors]= 0
[drop]= 0
[overrun]= 0
[eth1]
[tx]
[queuelen]= 1000
[bytes]= 840446
[packets]= 15422
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[rx]
[bytes]= 48518472
[packets]= 33228
[errors]= 0
[drop]= 0
[overrun]= 0
[ipaddress]= 161.202.142.197
[macaddress]= 06:0C:FD:AD:15:B4
[memory]
[swap]
[cached]= 0kB
[total]= 2096444kB
[free]= 2096444kB
[total]= 1011848kB
[free]= 76592kB
[buffers]= 47640kB
[cached]= 628972kB
[active]= 329844kB
[inactive]= 487732kB
[dirty]= 108kB
[writeback]= 0kB
[anon_pages]= 140972kB
[mapped]= 22124kB
[slab]= 94092kB
[slab_reclaimable]= 81568kB
[slab_unreclaim]= 12524kB
[page_tables]= 3596kB
[nfs_unstable]= 0kB
[bounce]= 0kB
[commit_limit]= 2602368kB
[committed_as]= 332640kB
[vmalloc_total]= 34359738367kB
[vmalloc_used]= 4876kB
[vmalloc_chunk]= 34359724267kB
[ip6address]= fe80::40c:fdff:fead:15b4
[filesystem]
[/dev/xvda2]
[kb_size]= 25412940
[kb_used]= 1467716
[kb_available]= 22647664
[percent_used]= 7%
[mount]= /
[total_inodes]= 1622016
[inodes_used]= 52633
[inodes_available]= 1569383
[inodes_percent_used]= 4%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "data=ordered"]
[uuid]= cc5c4f51-5e29-481c-bd46-f9495524e560
[devtmpfs]
[kb_size]= 497688
[kb_used]= 0
[kb_available]= 497688
[percent_used]= 0%
[mount]= /dev
[total_inodes]= 124422
[inodes_used]= 318
[inodes_available]= 124104
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "nosuid", "size=497688k", "nr_inodes=124422", "mode=755"]
[tmpfs]
[kb_size]= 505924
[kb_used]= 0
[kb_available]= 505924
[percent_used]= 0%
[mount]= /sys/fs/cgroup
[total_inodes]= 126481
[inodes_used]= 13
[inodes_available]= 126468
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "mode=755"]
[/dev/xvda1]
[kb_size]= 245679
[kb_used]= 111033
[kb_available]= 121539
[percent_used]= 48%
[mount]= /boot
[total_inodes]= 65536
[inodes_used]= 345
[inodes_available]= 65191
[inodes_percent_used]= 1%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "data=ordered"]
[uuid]= 01bba995-dff8-443f-9203-7d2cc433c4d4
[proc]
[mount]= /proc
[fs_type]= proc
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[sysfs]
[mount]= /sys
[fs_type]= sysfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[securityfs]
[mount]= /sys/kernel/security
[fs_type]= securityfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[devpts]
[mount]= /dev/pts
[fs_type]= devpts
[mount_options]= ["rw", "nosuid", "noexec", "relatime", "gid=5", "mode=620", "ptmxmode=000"]
[cgroup]
[mount]= /sys/fs/cgroup/hugetlb
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "hugetlb"]
[pstore]
[mount]= /sys/fs/pstore
[fs_type]= pstore
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[configfs]
[mount]= /sys/kernel/config
[fs_type]= configfs
[mount_options]= ["rw", "relatime"]
[systemd-1]
[mount]= /proc/sys/fs/binfmt_misc
[fs_type]= autofs
[mount_options]= ["rw", "relatime", "fd=35", "pgrp=1", "timeout=300", "minproto=5", "maxproto=5", "direct"]
[hugetlbfs]
[mount]= /dev/hugepages
[fs_type]= hugetlbfs
[mount_options]= ["rw", "relatime"]
[debugfs]
[mount]= /sys/kernel/debug
[fs_type]= debugfs
[mount_options]= ["rw", "relatime"]
[mqueue]
[mount]= /dev/mqueue
[fs_type]= mqueue
[mount_options]= ["rw", "relatime"]
[none]
[mount]= /proc/xen
[fs_type]= xenfs
[mount_options]= ["rw", "relatime"]
[/dev/xvdb1]
[fs_type]= swap
[uuid]= d51fcca0-6b10-4934-a572-f3898dfd8840
[label]= SWAP-xvdb1
[rootfs]
[mount]= /
[fs_type]= rootfs
[mount_options]= ["rw"]
[kernel]
[name]= Linux
[release]= 3.10.0-229.14.1.el7.x86_64
[version]= #1 SMP Tue Sep 15 15:05:51 UTC 2015
[machine]= x86_64
[os]= GNU/Linux
[modules]
[ip6t_rpfilter]
[size]= 12546
[refcount]= 1
[ip6t_REJECT]
[size]= 12939
[refcount]= 2
[ipt_REJECT]
[size]= 12541
[refcount]= 2
[xt_conntrack]
[size]= 12760
[refcount]= 4
[ebtable_nat]
[size]= 12807
[refcount]= 0
[ebtable_broute]
[size]= 12731
[refcount]= 0
[bridge]
[size]= 115385
[refcount]= 1
[stp]
[size]= 12976
[refcount]= 1
[llc]
[size]= 14552
[refcount]= 2
[ebtable_filter]
[size]= 12827
[refcount]= 0
[ebtables]
[size]= 30913
[refcount]= 3
[ip6table_nat]
[size]= 12864
[refcount]= 1
[nf_conntrack_ipv6]
[size]= 18738
[refcount]= 3
[nf_defrag_ipv6]
[size]= 34651
[refcount]= 1
[nf_nat_ipv6]
[size]= 14131
[refcount]= 1
[ip6table_mangle]
[size]= 12700
[refcount]= 1
[ip6table_security]
[size]= 12710
[refcount]= 1
[ip6table_raw]
[size]= 12683
[refcount]= 1
[ip6table_filter]
[size]= 12815
[refcount]= 1
[ip6_tables]
[size]= 27025
[refcount]= 5
[iptable_nat]
[size]= 12875
[refcount]= 1
[nf_conntrack_ipv4]
[size]= 14862
[refcount]= 3
[nf_defrag_ipv4]
[size]= 12729
[refcount]= 1
[nf_nat_ipv4]
[size]= 14115
[refcount]= 1
[nf_nat]
[size]= 26146
[refcount]= 2
[nf_conntrack]
[size]= 105702
[refcount]= 6
[iptable_mangle]
[size]= 12695
[refcount]= 1
[iptable_security]
[size]= 12705
[refcount]= 1
[iptable_raw]
[size]= 12678
[refcount]= 1
[iptable_filter]
[size]= 12810
[refcount]= 1
[ip_tables]
[size]= 27239
[refcount]= 5
[xenfs]
[size]= 12667
[refcount]= 1
[xen_privcmd]
[size]= 13206
[refcount]= 1
[intel_rapl]
[size]= 18773
[refcount]= 0
[crct10dif_pclmul]
[size]= 14289
[refcount]= 0
[crct10dif_common]
[size]= 12595
[refcount]= 1
[crc32_pclmul]
[size]= 13113
[refcount]= 0
[crc32c_intel]
[size]= 22079
[refcount]= 0
[ghash_clmulni_intel]
[size]= 13259
[refcount]= 0
[ppdev]
[size]= 17671
[refcount]= 0
[cryptd]
[size]= 20359
[refcount]= 1
[pcspkr]
[size]= 12718
[refcount]= 0
[serio_raw]
[size]= 13462
[refcount]= 0
[parport_pc]
[size]= 28165
[refcount]= 0
[parport]
[size]= 42348
[refcount]= 2
[i2c_piix4]
[size]= 22106
[refcount]= 0
[i2c_core]
[size]= 40325
[refcount]= 1
[ext4]
[size]= 562430
[refcount]= 2
[mbcache]
[size]= 14958
[refcount]= 1
[jbd2]
[size]= 102940
[refcount]= 1
[ata_generic]
[size]= 12910
[refcount]= 0
[pata_acpi]
[size]= 13038
[refcount]= 0
[xen_netfront]
[size]= 26640
[refcount]= 0
[ata_piix]
[size]= 35038
[refcount]= 0
[xen_blkfront]
[size]= 26864
[refcount]= 5
[libata]
[size]= 218854
[refcount]= 3
[floppy]
[size]= 69417
[refcount]= 0
[os]= linux
[os_version]= 3.10.0-229.14.1.el7.x86_64
[lsb]
[platform]= centos
[platform_version]= 7.1.1503
[platform_family]= rhel
[cpu]
[0]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2683 v3 @ 2.00GHz
[stepping]= 2
[mhz]= 2000.072
[cache_size]= 35840 KB
[physical_id]= 0
[core_id]= 0
[cores]= 1
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "clflush", "mmx", "fxsr", "sse", "sse2", "syscall", "rdtscp", "lm", "constant_tsc", "rep_good", "nopl", "pni", "pclmulqdq", "ssse3", "cx16", "sse4_1", "sse4_2", "x2apic", "popcnt", "tsc_deadline_timer", "f16c", "rdrand", "hypervisor", "lahf_lm", "fsgsbase", "smep", "erms"]
[keys]
[ssh]
[host_rsa_public]= AAAAB3NzaC1yc2EAAAADAQABAAABAQDI7gUs9ZaKLsWlEQytVPV2WENjZ1kErb6ntsdYRXDQaPIZiYFt0a3BlOWqHm2B70okE+ayt5/17J/1bqhNyle7U4SkV5pTehlWIhA1Sgbv0Dlakk7aBu3+pPcPtnF7H7CXsRFW2ArHK37jRk4WJ6nGpH+P8sLHt8EmWk6JmPZQjXqs9sFLd+QXros1XbiHCgANeTCsdule89+hpLZrX0wtGyTxkFs020J0aC7fB3b5dQWda9yyl31SSEXszzGL4up7xC5wuuNsrdsq3JxRbEck9rIfgSqNvS9Uz0uDQtFcdx3GhXmt0gF78rZ7k4OkBjISiDt0J/pVb/LKtVzyBsZj
[host_ecdsa_public]= AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGAx+kfNBkaMRhk1LuSJ463rgaNnHUFk6c69CIHJtCUm8oV+im3l0NbYkU8ws/GzZqySkpShaHjoTINsjnCu0kQ=
[host_ecdsa_type]= ecdsa-sha2-nistp256
[host_ed25519_public]= AAAAC3NzaC1lZDI1NTE5AAAAIItc8dPnkRMwxf3euMkeEJFICIUK3Qnj7RnvFr+ccvhZ
[uptime]= 7 minutes 03 seconds
[idletime]= 5 minutes 35 seconds
[virtualization]
[systems]
[xen]= guest
[system]= xen
[role]= guest
[etc]
[passwd]
[root]
[dir]= /root
[shell]= /bin/bash
[gecos]= root
[bin]
[dir]= /bin
[shell]= /sbin/nologin
[gecos]= bin
[daemon]
[dir]= /sbin
[shell]= /sbin/nologin
[gecos]= daemon
[adm]
[dir]= /var/adm
[shell]= /sbin/nologin
[gecos]= adm
[lp]
[dir]= /var/spool/lpd
[shell]= /sbin/nologin
[gecos]= lp
[sync]
[dir]= /sbin
[shell]= /bin/sync
[gecos]= sync
[shutdown]
[dir]= /sbin
[shell]= /sbin/shutdown
[gecos]= shutdown
[halt]
[dir]= /sbin
[shell]= /sbin/halt
[gecos]= halt
[mail]
[dir]= /var/spool/mail
[shell]= /sbin/nologin
[gecos]= mail
[operator]
[dir]= /root
[shell]= /sbin/nologin
[gecos]= operator
[games]
[dir]= /usr/games
[shell]= /sbin/nologin
[gecos]= games
[ftp]
[dir]= /var/ftp
[shell]= /sbin/nologin
[gecos]= FTP User
[nobody]
[dir]= /
[shell]= /sbin/nologin
[gecos]= Nobody
[dbus]
[dir]= /
[shell]= /sbin/nologin
[gecos]= System message bus
[polkitd]
[dir]= /
[shell]= /sbin/nologin
[gecos]= User for polkitd
[avahi]
[dir]= /var/run/avahi-daemon
[shell]= /sbin/nologin
[gecos]= Avahi mDNS/DNS-SD Stack
[avahi-autoipd]
[dir]= /var/lib/avahi-autoipd
[shell]= /sbin/nologin
[gecos]= Avahi IPv4LL Stack
[postfix]
[dir]= /var/spool/postfix
[shell]= /sbin/nologin
[gecos]=
[sshd]
[dir]= /var/empty/sshd
[shell]= /sbin/nologin
[gecos]= Privilege-separated SSH
[tss]
[dir]= /dev/null
[shell]= /sbin/nologin
[gecos]= Account used by the trousers package to sandbox the tcsd daemon
[group]
[root]
[members]= []
[bin]
[members]= []
[daemon]
[members]= []
[sys]
[members]= []
[adm]
[members]= []
[tty]
[members]= []
[disk]
[members]= []
[lp]
[members]= []
[mem]
[members]= []
[kmem]
[members]= []
[wheel]
[members]= []
[cdrom]
[members]= []
[mail]
[members]= ["postfix"]
[man]
[members]= []
[dialout]
[members]= []
[floppy]
[members]= []
[games]
[members]= []
[tape]
[members]= []
[video]
[members]= []
[ftp]
[members]= []
[lock]
[members]= []
[audio]
[members]= []
[nobody]
[members]= []
[users]
[members]= []
[utmp]
[members]= []
[utempter]
[members]= []
[ssh_keys]
[members]= []
[systemd-journal]
[members]= []
[dbus]
[members]= []
[polkitd]
[members]= []
[avahi]
[members]= []
[avahi-autoipd]
[members]= []
[dip]
[members]= []
[postdrop]
[members]= []
[postfix]
[members]= []
[sshd]
[members]= []
[tss]
[members]= []
[current_user]= root
[filesystem2]
[by_device]
[/dev/xvda2]
[kb_size]= 25412940
[kb_used]= 1467716
[kb_available]= 22647664
[percent_used]= 7%
[total_inodes]= 1622016
[inodes_used]= 52633
[inodes_available]= 1569383
[inodes_percent_used]= 4%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "data=ordered"]
[uuid]= cc5c4f51-5e29-481c-bd46-f9495524e560
[mounts]= ["/"]
[devtmpfs]
[kb_size]= 497688
[kb_used]= 0
[kb_available]= 497688
[percent_used]= 0%
[total_inodes]= 124422
[inodes_used]= 318
[inodes_available]= 124104
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "nosuid", "size=497688k", "nr_inodes=124422", "mode=755"]
[mounts]= ["/dev"]
[tmpfs]
[kb_size]= 505924
[kb_used]= 0
[kb_available]= 505924
[percent_used]= 0%
[total_inodes]= 126481
[inodes_used]= 13
[inodes_available]= 126468
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "mode=755"]
[mounts]= ["/dev/shm", "/run", "/sys/fs/cgroup"]
[/dev/xvda1]
[kb_size]= 245679
[kb_used]= 111033
[kb_available]= 121539
[percent_used]= 48%
[total_inodes]= 65536
[inodes_used]= 345
[inodes_available]= 65191
[inodes_percent_used]= 1%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "data=ordered"]
[uuid]= 01bba995-dff8-443f-9203-7d2cc433c4d4
[mounts]= ["/boot"]
[proc]
[fs_type]= proc
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[mounts]= ["/proc"]
[sysfs]
[fs_type]= sysfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[mounts]= ["/sys"]
[securityfs]
[fs_type]= securityfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[mounts]= ["/sys/kernel/security"]
[devpts]
[fs_type]= devpts
[mount_options]= ["rw", "nosuid", "noexec", "relatime", "gid=5", "mode=620", "ptmxmode=000"]
[mounts]= ["/dev/pts"]
[cgroup]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "hugetlb"]
[mounts]= ["/sys/fs/cgroup/systemd", "/sys/fs/cgroup/cpuset", "/sys/fs/cgroup/cpu,cpuacct", "/sys/fs/cgroup/memory", "/sys/fs/cgroup/devices", "/sys/fs/cgroup/freezer", "/sys/fs/cgroup/net_cls", "/sys/fs/cgroup/blkio", "/sys/fs/cgroup/perf_event", "/sys/fs/cgroup/hugetlb"]
[pstore]
[fs_type]= pstore
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[mounts]= ["/sys/fs/pstore"]
[configfs]
[fs_type]= configfs
[mount_options]= ["rw", "relatime"]
[mounts]= ["/sys/kernel/config"]
[systemd-1]
[fs_type]= autofs
[mount_options]= ["rw", "relatime", "fd=35", "pgrp=1", "timeout=300", "minproto=5", "maxproto=5", "direct"]
[mounts]= ["/proc/sys/fs/binfmt_misc"]
[hugetlbfs]
[fs_type]= hugetlbfs
[mount_options]= ["rw", "relatime"]
[mounts]= ["/dev/hugepages"]
[debugfs]
[fs_type]= debugfs
[mount_options]= ["rw", "relatime"]
[mounts]= ["/sys/kernel/debug"]
[mqueue]
[fs_type]= mqueue
[mount_options]= ["rw", "relatime"]
[mounts]= ["/dev/mqueue"]
[none]
[fs_type]= xenfs
[mount_options]= ["rw", "relatime"]
[mounts]= ["/proc/xen"]
[/dev/xvda]
[mounts]= []
[/dev/xvdb]
[mounts]= []
[/dev/xvdb1]
[fs_type]= swap
[uuid]= d51fcca0-6b10-4934-a572-f3898dfd8840
[label]= SWAP-xvdb1
[mounts]= []
[rootfs]
[fs_type]= rootfs
[mount_options]= ["rw"]
[mounts]= ["/"]
[by_mountpoint]
[/]
[kb_size]= 25412940
[kb_used]= 1467716
[kb_available]= 22647664
[percent_used]= 7%
[total_inodes]= 1622016
[inodes_used]= 52633
[inodes_available]= 1569383
[inodes_percent_used]= 4%
[fs_type]= rootfs
[mount_options]= ["rw"]
[uuid]= cc5c4f51-5e29-481c-bd46-f9495524e560
[devices]= ["/dev/xvda2", "rootfs"]
[/dev]
[kb_size]= 497688
[kb_used]= 0
[kb_available]= 497688
[percent_used]= 0%
[total_inodes]= 124422
[inodes_used]= 318
[inodes_available]= 124104
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "nosuid", "size=497688k", "nr_inodes=124422", "mode=755"]
[devices]= ["devtmpfs"]
[/dev/shm]
[kb_size]= 505924
[kb_used]= 0
[kb_available]= 505924
[percent_used]= 0%
[total_inodes]= 126481
[inodes_used]= 1
[inodes_available]= 126480
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev"]
[devices]= ["tmpfs"]
[/run]
[kb_size]= 505924
[kb_used]= 6588
[kb_available]= 499336
[percent_used]= 2%
[total_inodes]= 126481
[inodes_used]= 305
[inodes_available]= 126176
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev", "mode=755"]
[devices]= ["tmpfs"]
[/sys/fs/cgroup]
[kb_size]= 505924
[kb_used]= 0
[kb_available]= 505924
[percent_used]= 0%
[total_inodes]= 126481
[inodes_used]= 13
[inodes_available]= 126468
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "mode=755"]
[devices]= ["tmpfs"]
[/boot]
[kb_size]= 245679
[kb_used]= 111033
[kb_available]= 121539
[percent_used]= 48%
[total_inodes]= 65536
[inodes_used]= 345
[inodes_available]= 65191
[inodes_percent_used]= 1%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "data=ordered"]
[uuid]= 01bba995-dff8-443f-9203-7d2cc433c4d4
[devices]= ["/dev/xvda1"]
[/proc]
[fs_type]= proc
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[devices]= ["proc"]
[/sys]
[fs_type]= sysfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[devices]= ["sysfs"]
[/sys/kernel/security]
[fs_type]= securityfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[devices]= ["securityfs"]
[/dev/pts]
[fs_type]= devpts
[mount_options]= ["rw", "nosuid", "noexec", "relatime", "gid=5", "mode=620", "ptmxmode=000"]
[devices]= ["devpts"]
[/sys/fs/cgroup/systemd]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "xattr", "release_agent=/usr/lib/systemd/systemd-cgroups-agent", "name=systemd"]
[devices]= ["cgroup"]
[/sys/fs/pstore]
[fs_type]= pstore
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[devices]= ["pstore"]
[/sys/fs/cgroup/cpuset]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "cpuset"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/cpu,cpuacct]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "cpuacct", "cpu"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/memory]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "memory"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/devices]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "devices"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/freezer]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "freezer"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/net_cls]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "net_cls"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/blkio]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "blkio"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/perf_event]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "perf_event"]
[devices]= ["cgroup"]
[/sys/fs/cgroup/hugetlb]
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "hugetlb"]
[devices]= ["cgroup"]
[/sys/kernel/config]
[fs_type]= configfs
[mount_options]= ["rw", "relatime"]
[devices]= ["configfs"]
[/proc/sys/fs/binfmt_misc]
[fs_type]= autofs
[mount_options]= ["rw", "relatime", "fd=35", "pgrp=1", "timeout=300", "minproto=5", "maxproto=5", "direct"]
[devices]= ["systemd-1"]
[/dev/hugepages]
[fs_type]= hugetlbfs
[mount_options]= ["rw", "relatime"]
[devices]= ["hugetlbfs"]
[/sys/kernel/debug]
[fs_type]= debugfs
[mount_options]= ["rw", "relatime"]
[devices]= ["debugfs"]
[/dev/mqueue]
[fs_type]= mqueue
[mount_options]= ["rw", "relatime"]
[devices]= ["mqueue"]
[/proc/xen]
[fs_type]= xenfs
[mount_options]= ["rw", "relatime"]
[devices]= ["none"]
[by_pair]
[/dev/xvda2,/]
[device]= /dev/xvda2
[kb_size]= 25412940
[kb_used]= 1467716
[kb_available]= 22647664
[percent_used]= 7%
[mount]= /
[total_inodes]= 1622016
[inodes_used]= 52633
[inodes_available]= 1569383
[inodes_percent_used]= 4%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "data=ordered"]
[uuid]= cc5c4f51-5e29-481c-bd46-f9495524e560
[devtmpfs,/dev]
[device]= devtmpfs
[kb_size]= 497688
[kb_used]= 0
[kb_available]= 497688
[percent_used]= 0%
[mount]= /dev
[total_inodes]= 124422
[inodes_used]= 318
[inodes_available]= 124104
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "nosuid", "size=497688k", "nr_inodes=124422", "mode=755"]
[tmpfs,/dev/shm]
[device]= tmpfs
[kb_size]= 505924
[kb_used]= 0
[kb_available]= 505924
[percent_used]= 0%
[mount]= /dev/shm
[total_inodes]= 126481
[inodes_used]= 1
[inodes_available]= 126480
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev"]
[tmpfs,/run]
[device]= tmpfs
[kb_size]= 505924
[kb_used]= 6588
[kb_available]= 499336
[percent_used]= 2%
[mount]= /run
[total_inodes]= 126481
[inodes_used]= 305
[inodes_available]= 126176
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev", "mode=755"]
[tmpfs,/sys/fs/cgroup]
[device]= tmpfs
[kb_size]= 505924
[kb_used]= 0
[kb_available]= 505924
[percent_used]= 0%
[mount]= /sys/fs/cgroup
[total_inodes]= 126481
[inodes_used]= 13
[inodes_available]= 126468
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "mode=755"]
[/dev/xvda1,/boot]
[device]= /dev/xvda1
[kb_size]= 245679
[kb_used]= 111033
[kb_available]= 121539
[percent_used]= 48%
[mount]= /boot
[total_inodes]= 65536
[inodes_used]= 345
[inodes_available]= 65191
[inodes_percent_used]= 1%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "data=ordered"]
[uuid]= 01bba995-dff8-443f-9203-7d2cc433c4d4
[proc,/proc]
[device]= proc
[mount]= /proc
[fs_type]= proc
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[sysfs,/sys]
[device]= sysfs
[mount]= /sys
[fs_type]= sysfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[securityfs,/sys/kernel/security]
[device]= securityfs
[mount]= /sys/kernel/security
[fs_type]= securityfs
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[devpts,/dev/pts]
[device]= devpts
[mount]= /dev/pts
[fs_type]= devpts
[mount_options]= ["rw", "nosuid", "noexec", "relatime", "gid=5", "mode=620", "ptmxmode=000"]
[cgroup,/sys/fs/cgroup/systemd]
[device]= cgroup
[mount]= /sys/fs/cgroup/systemd
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "xattr", "release_agent=/usr/lib/systemd/systemd-cgroups-agent", "name=systemd"]
[pstore,/sys/fs/pstore]
[device]= pstore
[mount]= /sys/fs/pstore
[fs_type]= pstore
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime"]
[cgroup,/sys/fs/cgroup/cpuset]
[device]= cgroup
[mount]= /sys/fs/cgroup/cpuset
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "cpuset"]
[cgroup,/sys/fs/cgroup/cpu,cpuacct]
[device]= cgroup
[mount]= /sys/fs/cgroup/cpu,cpuacct
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "cpuacct", "cpu"]
[cgroup,/sys/fs/cgroup/memory]
[device]= cgroup
[mount]= /sys/fs/cgroup/memory
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "memory"]
[cgroup,/sys/fs/cgroup/devices]
[device]= cgroup
[mount]= /sys/fs/cgroup/devices
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "devices"]
[cgroup,/sys/fs/cgroup/freezer]
[device]= cgroup
[mount]= /sys/fs/cgroup/freezer
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "freezer"]
[cgroup,/sys/fs/cgroup/net_cls]
[device]= cgroup
[mount]= /sys/fs/cgroup/net_cls
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "net_cls"]
[cgroup,/sys/fs/cgroup/blkio]
[device]= cgroup
[mount]= /sys/fs/cgroup/blkio
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "blkio"]
[cgroup,/sys/fs/cgroup/perf_event]
[device]= cgroup
[mount]= /sys/fs/cgroup/perf_event
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "perf_event"]
[cgroup,/sys/fs/cgroup/hugetlb]
[device]= cgroup
[mount]= /sys/fs/cgroup/hugetlb
[fs_type]= cgroup
[mount_options]= ["rw", "nosuid", "nodev", "noexec", "relatime", "hugetlb"]
[configfs,/sys/kernel/config]
[device]= configfs
[mount]= /sys/kernel/config
[fs_type]= configfs
[mount_options]= ["rw", "relatime"]
[systemd-1,/proc/sys/fs/binfmt_misc]
[device]= systemd-1
[mount]= /proc/sys/fs/binfmt_misc
[fs_type]= autofs
[mount_options]= ["rw", "relatime", "fd=35", "pgrp=1", "timeout=300", "minproto=5", "maxproto=5", "direct"]
[hugetlbfs,/dev/hugepages]
[device]= hugetlbfs
[mount]= /dev/hugepages
[fs_type]= hugetlbfs
[mount_options]= ["rw", "relatime"]
[debugfs,/sys/kernel/debug]
[device]= debugfs
[mount]= /sys/kernel/debug
[fs_type]= debugfs
[mount_options]= ["rw", "relatime"]
[mqueue,/dev/mqueue]
[device]= mqueue
[mount]= /dev/mqueue
[fs_type]= mqueue
[mount_options]= ["rw", "relatime"]
[none,/proc/xen]
[device]= none
[mount]= /proc/xen
[fs_type]= xenfs
[mount_options]= ["rw", "relatime"]
[/dev/xvda,]
[device]= /dev/xvda
[/dev/xvdb,]
[device]= /dev/xvdb
[/dev/xvdb1,]
[device]= /dev/xvdb1
[fs_type]= swap
[uuid]= d51fcca0-6b10-4934-a572-f3898dfd8840
[label]= SWAP-xvdb1
[rootfs,/]
[device]= rootfs
[mount]= /
[fs_type]= rootfs
[mount_options]= ["rw"]
[init_package]= systemd
[root_group]= root
[hostname]= centos7
[machinename]= centos7
[fqdn]= centos7.takara.org
[domain]= takara.org
[softlayer]
[public_fqdn]= centos7.takara.org
[local_ipv4]= 10.132.253.30
[public_ipv4]= 161.202.142.197
[region]= tok02
[instance_id]= 14532427
[command]
[ps]= ps -ef
[chef_packages]
[ohai]
[version]= 8.7.0
[ohai_root]= /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/ohai-8.7.0/lib/ohai
[chef]
[version]= 12.5.1
[chef_root]= /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.5.1/lib
[dmi]
[dmidecode_version]= 2.12
[smbios_version]= 2.4
[structures]
[count]= 11
[size]= 357
[bios]
[all_records]= [{"record_id"=>"0x0000", "size"=>"0", "application_identifier"=>"BIOS Information", "Vendor"=>"Xen", "Version"=>"4.1.5", "Release Date"=>"11/28/2013", "Address"=>"0xE8000", "Runtime Size"=>"96 kB", "ROM Size"=>"64 kB", "Characteristics"=>{"PCI is supported"=>nil, "EDD is supported"=>nil, "Targeted content distribution is supported"=>nil}, "BIOS Revision"=>"4.1"}]
[vendor]= Xen
[version]= 4.1.5
[release_date]= 11/28/2013
[address]= 0xE8000
[runtime_size]= 96 kB
[rom_size]= 64 kB
[bios_revision]= 4.1
[system]
[all_records]= [{"record_id"=>"0x0100", "size"=>"1", "application_identifier"=>"System Information", "Manufacturer"=>"Xen", "Product Name"=>"HVM domU", "Version"=>"4.1.5", "Serial Number"=>"7ac5cc2b-801a-b357-06a0-9579e529fd74", "UUID"=>"7AC5CC2B-801A-B357-06A0-9579E529FD74", "Wake-up Type"=>"Power Switch", "SKU Number"=>"Not Specified", "Family"=>"Not Specified"}]
[manufacturer]= Xen
[product_name]= HVM domU
[version]= 4.1.5
[serial_number]= 7ac5cc2b-801a-b357-06a0-9579e529fd74
[uuid]= 7AC5CC2B-801A-B357-06A0-9579E529FD74
[wake_up_type]= Power Switch
[sku_number]= Not Specified
[family]= Not Specified
[chassis]
[all_records]= [{"record_id"=>"0x0300", "size"=>"3", "application_identifier"=>"Chassis Information", "Manufacturer"=>"Xen", "Type"=>"Other", "Lock"=>"Not Present", "Version"=>"Not Specified", "Serial Number"=>"Not Specified", "Asset Tag"=>"Not Specified", "Boot-up State"=>"Safe", "Power Supply State"=>"Safe", "Thermal State"=>"Safe", "Security Status"=>"Unknown"}]
[manufacturer]= Xen
[type]= Other
[lock]= Not Present
[version]= Not Specified
[serial_number]= Not Specified
[asset_tag]= Not Specified
[boot_up_state]= Safe
[power_supply_state]= Safe
[thermal_state]= Safe
[security_status]= Unknown
[processor]
[all_records]= [{"record_id"=>"0x0401", "size"=>"4", "application_identifier"=>"Processor Information", "Socket Designation"=>"CPU 1", "Type"=>"Central Processor", "Family"=>"Other", "Manufacturer"=>"Intel", "ID"=>"F2 06 03 00 FF FB 89 07", "Version"=>"Not Specified", "Voltage"=>"Unknown", "External Clock"=>"Unknown", "Max Speed"=>"2000 MHz", "Current Speed"=>"2000 MHz", "Status"=>"Populated, Enabled", "Upgrade"=>"Other"}]
[socket_designation]= CPU 1
[type]= Central Processor
[family]= Other
[manufacturer]= Intel
[id]= F2 06 03 00 FF FB 89 07
[version]= Not Specified
[voltage]= Unknown
[external_clock]= Unknown
[max_speed]= 2000 MHz
[current_speed]= 2000 MHz
[status]= Populated, Enabled
[upgrade]= Other
[oem_strings]
[all_records]= [{"record_id"=>"0x0B00", "size"=>"11", "application_identifier"=>"OEM Strings", "String 1"=>"Xen", "String 2"=>"MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d"}]
[string_1]= Xen
[string_2]= MS_VM_CERT/SHA1/bdbeb6e0a816d43fa6d3fe8aaef04c2bad9d3e3d
[cloud]
[public_ips]= ["161.202.142.197"]
[private_ips]= ["10.132.253.30"]
[public_ipv4]= 161.202.142.197
[local_ipv4]= 10.132.253.30
[public_hostname]= centos7.takara.org
[provider]= softlayer
[block_device]
[xvda]
[size]= 52428800
[removable]= 0
[rotational]= 0
[xvdb]
[size]= 4194304
[removable]= 0
[rotational]= 0
[recipes]= ["ohai", "ohai::default"]
[expanded_run_list]= ["ohai::default"]
[roles]= []
[cookbooks]
[dummy]
[version]= 0.1.0
[ohai]
[version]= 0.1.0
============================================
Ubuntu 14.04 SoftLayer 仮想サーバー
root@test02:/var/chef/cookbooks/ohai# chef-solo -o ohai
[2015-12-12T23:57:59+09:00] WARN: *****************************************
[2015-12-12T23:57:59+09:00] WARN: Did not find config file: /etc/chef/solo.rb, using command line options.
[2015-12-12T23:57:59+09:00] WARN: *****************************************
Starting Chef Client, version 12.5.1
[2015-12-12T23:58:05+09:00] WARN: Run List override has been provided.
[2015-12-12T23:58:05+09:00] WARN: Original Run List: []
[2015-12-12T23:58:05+09:00] WARN: Overridden Run List: [recipe[ohai]]
Compiling Cookbooks...
============================================
[tags]= []
[kernel]
[name]= Linux
[release]= 3.13.0-65-generic
[version]= #105-Ubuntu SMP Mon Sep 21 18:50:58 UTC 2015
[machine]= x86_64
[os]= GNU/Linux
[modules]
[xt_hl]
[size]= 12521
[refcount]= 6
[ip6t_rt]
[size]= 13537
[refcount]= 3
[ipt_REJECT]
[size]= 12541
[refcount]= 1
[xt_LOG]
[size]= 17717
[refcount]= 10
[xt_limit]
[size]= 12711
[refcount]= 13
[xt_tcpudp]
[size]= 12884
[refcount]= 18
[xt_addrtype]
[size]= 12635
[refcount]= 4
[nf_conntrack_netbios_ns]
[size]= 12665
[refcount]= 0
[nf_conntrack_broadcast]
[size]= 12589
[refcount]= 1
[nf_nat_ftp]
[size]= 12770
[refcount]= 0
[nf_nat]
[size]= 21841
[refcount]= 1
[nf_conntrack_ftp]
[size]= 18638
[refcount]= 1
[nf_conntrack_ipv6]
[size]= 18894
[refcount]= 8
[nf_defrag_ipv6]
[size]= 34768
[refcount]= 1
[ip6table_filter]
[size]= 12815
[refcount]= 1
[ip6_tables]
[size]= 27025
[refcount]= 1
[nf_conntrack_ipv4]
[size]= 15012
[refcount]= 8
[nf_defrag_ipv4]
[size]= 12758
[refcount]= 1
[xt_recent]
[size]= 18498
[refcount]= 0
[xt_conntrack]
[size]= 12760
[refcount]= 16
[nf_conntrack]
[size]= 97202
[refcount]= 8
[iptable_filter]
[size]= 12810
[refcount]= 1
[ip_tables]
[size]= 27239
[refcount]= 1
[x_tables]
[size]= 34059
[refcount]= 13
[xenfs]
[size]= 12978
[refcount]= 1
[xen_privcmd]
[size]= 13243
[refcount]= 1
[iscsi_tcp]
[size]= 18333
[refcount]= 0
[libiscsi_tcp]
[size]= 25146
[refcount]= 1
[libiscsi]
[size]= 57278
[refcount]= 2
[scsi_transport_iscsi]
[size]= 89279
[refcount]= 3
[crct10dif_pclmul]
[size]= 14289
[refcount]= 0
[crc32_pclmul]
[size]= 13113
[refcount]= 0
[ghash_clmulni_intel]
[size]= 13216
[refcount]= 0
[cryptd]
[size]= 20359
[refcount]= 1
[lp]
[size]= 17759
[refcount]= 0
[parport]
[size]= 42348
[refcount]= 1
[os]= linux
[os_version]= 3.13.0-65-generic
[lsb]
[id]= Ubuntu
[release]= 14.04
[codename]= trusty
[description]= Ubuntu 14.04.3 LTS
[platform]= ubuntu
[platform_version]= 14.04
[platform_family]= debian
[dmi]
[dmidecode_version]= 2.12
[virtualization]
[systems]
[xen]= guest
[system]= xen
[role]= guest
[memory]
[swap]
[cached]= 0kB
[total]= 2096444kB
[free]= 2096444kB
[total]= 1013708kB
[free]= 41024kB
[buffers]= 77148kB
[cached]= 675332kB
[active]= 468500kB
[inactive]= 390704kB
[dirty]= 108kB
[writeback]= 0kB
[anon_pages]= 110404kB
[mapped]= 17688kB
[slab]= 93928kB
[slab_reclaimable]= 85600kB
[slab_unreclaim]= 8328kB
[page_tables]= 2680kB
[nfs_unstable]= 0kB
[bounce]= 0kB
[commit_limit]= 2603296kB
[committed_as]= 203344kB
[vmalloc_total]= 34359738367kB
[vmalloc_used]= 4868kB
[vmalloc_chunk]= 34359727524kB
[filesystem]
[/dev/xvda2]
[kb_size]= 25424764
[kb_used]= 1290920
[kb_available]= 22835668
[percent_used]= 6%
[mount]= /
[total_inodes]= 1623840
[inodes_used]= 76220
[inodes_available]= 1547620
[inodes_percent_used]= 5%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "errors=remount-ro", "barrier=0"]
[uuid]= cf9bf191-0ed7-4a50-a637-5b65196c2efd
[none]
[kb_size]= 102400
[kb_used]= 0
[kb_available]= 102400
[percent_used]= 0%
[mount]= /proc/xen
[total_inodes]= 126713
[inodes_used]= 2
[inodes_available]= 126711
[inodes_percent_used]= 1%
[fs_type]= xenfs
[mount_options]= ["rw"]
[udev]
[kb_size]= 497104
[kb_used]= 4
[kb_available]= 497100
[percent_used]= 1%
[mount]= /dev
[total_inodes]= 124276
[inodes_used]= 390
[inodes_available]= 123886
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "mode=0755"]
[tmpfs]
[kb_size]= 101372
[kb_used]= 188
[kb_available]= 101184
[percent_used]= 1%
[mount]= /run
[total_inodes]= 126713
[inodes_used]= 259
[inodes_available]= 126454
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "size=10%", "mode=0755"]
[/dev/xvda1]
[kb_size]= 236876
[kb_used]= 18304
[kb_available]= 206131
[percent_used]= 9%
[mount]= /boot
[total_inodes]= 62248
[inodes_used]= 21
[inodes_available]= 62227
[inodes_percent_used]= 1%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "barrier=0"]
[uuid]= 8957e182-f52e-4e78-a06d-a354dcb7a0e2
[proc]
[mount]= /proc
[fs_type]= proc
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[sysfs]
[mount]= /sys
[fs_type]= sysfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[devpts]
[mount]= /dev/pts
[fs_type]= devpts
[mount_options]= ["rw", "noexec", "nosuid", "gid=5", "mode=0620"]
[systemd]
[mount]= /sys/fs/cgroup/systemd
[fs_type]= cgroup
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "none", "name=systemd"]
[/dev/xvdb1]
[fs_type]= swap
[uuid]= d51fcca0-6b10-4934-a572-f3898dfd8840
[label]= SWAP-xvdb1
[rootfs]
[mount]= /
[fs_type]= rootfs
[mount_options]= ["rw"]
[/dev/disk/by-uuid/cf9bf191-0ed7-4a50-a637-5b65196c2efd]
[mount]= /
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "nobarrier", "errors=remount-ro", "data=ordered"]
[network]
[interfaces]
[lo]
[mtu]= 65536
[flags]= ["LOOPBACK", "UP", "LOWER_UP"]
[encapsulation]= Loopback
[addresses]
[127.0.0.1]
[family]= inet
[prefixlen]= 8
[netmask]= 255.0.0.0
[scope]= Node
[::1]
[family]= inet6
[prefixlen]= 128
[scope]= Node
[state]= unknown
[eth0]
[type]= eth
[number]= 0
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "UP", "LOWER_UP"]
[encapsulation]= Ethernet
[addresses]
[06:C5:1E:D5:F6:F0]
[family]= lladdr
[10.132.253.30]
[family]= inet
[prefixlen]= 26
[netmask]= 255.255.255.192
[broadcast]= 10.132.253.63
[scope]= Global
[fe80::4c5:1eff:fed5:f6f0]
[family]= inet6
[prefixlen]= 64
[scope]= Link
[state]= up
[arp]
[10.132.253.2]= e4:c7:22:61:7a:41
[10.132.253.3]= e4:c7:22:63:c2:c1
[10.132.253.1]= 00:00:0c:9f:f0:01
[routes]= [{"destination"=>"10.0.0.0/8", "family"=>"inet", "via"=>"10.132.253.1"}, {"destination"=>"10.132.253.0/26", "family"=>"inet", "scope"=>"link", "proto"=>"kernel", "src"=>"10.132.253.30"}, {"destination"=>"fe80::/64", "family"=>"inet6", "metric"=>"256", "proto"=>"kernel"}]
[eth1]
[type]= eth
[number]= 1
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "UP", "LOWER_UP"]
[encapsulation]= Ethernet
[addresses]
[06:CD:49:04:9D:56]
[family]= lladdr
[161.202.142.197]
[family]= inet
[prefixlen]= 28
[netmask]= 255.255.255.240
[broadcast]= 161.202.142.207
[scope]= Global
[2401:c900:1001:150::2]
[family]= inet6
[prefixlen]= 64
[scope]= Global
[fe80::4cd:49ff:fe04:9d56]
[family]= inet6
[prefixlen]= 64
[scope]= Link
[state]= up
[arp]
[161.202.142.194]= e4:c7:22:63:c1:c1
[161.202.142.193]= 00:00:0c:9f:f0:01
[routes]= [{"destination"=>"default", "family"=>"inet", "via"=>"161.202.142.193"}, {"destination"=>"161.202.142.192/28", "family"=>"inet", "scope"=>"link", "proto"=>"kernel", "src"=>"161.202.142.197"}, {"destination"=>"2401:c900:1001:150::/64", "family"=>"inet6", "metric"=>"256", "proto"=>"kernel"}, {"destination"=>"fe80::/64", "family"=>"inet6", "metric"=>"256", "proto"=>"kernel"}, {"destination"=>"default", "family"=>"inet6", "via"=>"2401:c900:1001:150::1", "metric"=>"1024"}]
[neighbour_inet6]
[2401:c900:1001:150:ffff:ffff:ffff:ff7f]= e4:c7:22:61:83:41
[2401:c900:1001:150:ffff:ffff:ffff:ff7e]= e4:c7:22:63:c1:c1
[2401:c900:1001:150::1]= 00:05:73:a0:00:02
[fe80::e6c7:22ff:fe63:c1c1]= e4:c7:22:63:c1:c1
[fe80::e6c7:22ff:fe61:8341]= e4:c7:22:61:83:41
[eth1:0]
[addresses]
[161.202.90.112]
[family]= inet
[prefixlen]= 32
[netmask]= 255.255.255.255
[broadcast]= 161.202.90.112
[scope]= Global
[eth1:1]
[addresses]
[161.202.90.113]
[family]= inet
[prefixlen]= 32
[netmask]= 255.255.255.255
[broadcast]= 161.202.90.113
[scope]= Global
[eth1:2]
[addresses]
[161.202.90.114]
[family]= inet
[prefixlen]= 32
[netmask]= 255.255.255.255
[broadcast]= 161.202.90.114
[scope]= Global
[eth1:3]
[addresses]
[161.202.90.115]
[family]= inet
[prefixlen]= 32
[netmask]= 255.255.255.255
[broadcast]= 161.202.90.115
[scope]= Global
[default_interface]= eth1
[default_gateway]= 161.202.142.193
[default_inet6_interface]= eth1
[default_inet6_gateway]= 2401:c900:1001:150::1
[counters]
[network]
[interfaces]
[lo]
[rx]
[bytes]= 0
[packets]= 0
[errors]= 0
[drop]= 0
[overrun]= 0
[tx]
[bytes]= 0
[packets]= 0
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[eth0]
[tx]
[queuelen]= 1000
[bytes]= 23147217
[packets]= 65603
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[rx]
[bytes]= 90263738
[packets]= 124808
[errors]= 0
[drop]= 0
[overrun]= 0
[eth1]
[tx]
[queuelen]= 1000
[bytes]= 214737
[packets]= 3349
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[rx]
[bytes]= 45233112
[packets]= 61091
[errors]= 0
[drop]= 0
[overrun]= 0
[ipaddress]= 161.202.142.197
[macaddress]= 06:CD:49:04:9D:56
[ip6address]= 2401:c900:1001:150::2
[cpu]
[0]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 63
[model_name]= Intel(R) Xeon(R) CPU E5-2683 v3 @ 2.00GHz
[stepping]= 2
[mhz]= 2000.058
[cache_size]= 35840 KB
[physical_id]= 0
[core_id]= 3
[cores]= 1
[flags]= ["fpu", "de", "tsc", "msr", "pae", "cx8", "apic", "sep", "cmov", "pat", "clflush", "mmx", "fxsr", "sse", "sse2", "ss", "ht", "syscall", "nx", "lm", "constant_tsc", "rep_good", "nopl", "pni", "pclmulqdq", "ssse3", "fma", "cx16", "sse4_1", "sse4_2", "movbe", "popcnt", "tsc_deadline_timer", "f16c", "rdrand", "hypervisor", "lahf_lm", "abm", "arat", "epb", "pln", "pts", "dtherm", "fsgsbase", "erms"]
[languages]
[ruby]
[platform]= x86_64-linux
[version]= 2.1.6
[release_date]= 2015-04-13
[target]= x86_64-unknown-linux-gnu
[target_cpu]= x86_64
[target_vendor]= unknown
[target_os]= linux
[host]= x86_64-unknown-linux-gnu
[host_cpu]= x86_64
[host_os]= linux-gnu
[host_vendor]= unknown
[bin_dir]= /opt/chef/embedded/bin
[ruby_bin]= /opt/chef/embedded/bin/ruby
[gems_dir]= /opt/chef/embedded/lib/ruby/gems/2.1.0
[gem_bin]= /opt/chef/embedded/bin/gem
[perl]
[version]= 5.18.2
[archname]= x86_64-linux-gnu-thread-multi
[python]
[version]= 2.7.6
[builddate]= Jun 22 2015, 17:58:13
[softlayer]
[public_fqdn]= test02.takara.org
[local_ipv4]= 10.132.253.30
[public_ipv4]= 161.202.142.197
[region]= tok02
[instance_id]= 14526139
[keys]
[ssh]
[host_rsa_public]= AAAAB3NzaC1yc2EAAAADAQABAAABAQDec1juz4km1AE8EdMIbhNc9YncGiLAepHw9KC+LyVe5g7YgKB5/dW7cecOzNCYNnxiyyh0ZhaLemYiFEwkKWXfbKhFrWnxYIvrZID3qC4XcbmW7N19YPHY42mro3UfxYSvcH/iEoqc2Dx7SY3e+ZYli9ua28WOpdASQ8KM7wtir7wp5udcnPlNWMry2Rvaeyx0uQq667w0kKKAZnwVn6QXKCbaAd8ahWPn7A5dTKbCHX2xxGWBD3YlhCOG3BK7fT7wxPKj8Aulz+Bjz9hes/yHqcjpPegLf7n7dQj1nZrBYLMBbnSbMseKClto433O3OP1kG4Y8rZqPNbAaVuASm/r
[host_dsa_public]= AAAAB3NzaC1kc3MAAACBALzb7iiWPNvyyLh1CN/tyyNcQ5tjeyhTSnRvOQmAAkFViUKluU9jmvnWHwd4eqvO4mtmm+H8D/56nZGUjcJKStrnXPhGBRyOpeqsS01kggJfNXajBYg8GFJB87yLwjR1vktywIO+Y1wwoQI90hvYP63EXajH1IrNMr1w6r1ZAk0LAAAAFQCgow80Gz2hzh200S8TIiuzMksz2QAAAIApb3yXPSqgJjTg7wVaX4swKBEbS7NPflg3l5LqlpXvA78jtsj00JbAdVsJYQKyN4j0/oA90xsAtVRbYLx6AtUBdJ7K7IPsGtsvpEtGBOd93+yPocCqXoB9YwgzZA9qZHnzrUpfVP/inl7gyMQ2hNVs4p4Ua/Es9m7whYIfNNuYUgAAAIEAlrBLHklmH6DlyyI/Vot7NPHLO3x5ZMnS50ZzVRI5/ADGTC/V3hyF9GXeVzdJZ1i/YPPoYydaUyg8SAkNciJquZ2oI2fHJwQI0eMbvrtdxllp5sG7QJapPZ4bv39RTZBGVgSJPcJs89ibJOIPQRWUXRqMejnrHPY/mKlfBcumwJU=
[host_ecdsa_public]= AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLeE13fMgRrJNh9TzMFGBp1A0bpvX84eLbaGbsS2a+zzSvJjBUQ7GaX2r3v2FMKgcNhLIGROWy+dpM0pYdofB4w=
[host_ecdsa_type]= ecdsa-sha2-nistp256
[host_ed25519_public]= AAAAC3NzaC1lZDI1NTE5AAAAIAWIV1LgTV1ZJo3Ufhmo6ICFoZF4nUgSGmvginDjV2o2
[uptime]= 11 hours 33 minutes 22 seconds
[idletime]= 11 hours 22 minutes 51 seconds
[init_package]= init
[cloud]
[public_ips]= ["161.202.142.197"]
[private_ips]= ["10.132.253.30"]
[public_ipv4]= 161.202.142.197
[local_ipv4]= 10.132.253.30
[public_hostname]= test02.takara.org
[provider]= softlayer
[filesystem2]
[by_device]
[/dev/xvda2]
[kb_size]= 25424764
[kb_used]= 1290920
[kb_available]= 22835668
[percent_used]= 6%
[total_inodes]= 1623840
[inodes_used]= 76220
[inodes_available]= 1547620
[inodes_percent_used]= 5%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "errors=remount-ro", "barrier=0"]
[uuid]= cf9bf191-0ed7-4a50-a637-5b65196c2efd
[mounts]= ["/"]
[none]
[kb_size]= 102400
[kb_used]= 0
[kb_available]= 102400
[percent_used]= 0%
[total_inodes]= 126713
[inodes_used]= 2
[inodes_available]= 126711
[inodes_percent_used]= 1%
[fs_type]= xenfs
[mount_options]= ["rw"]
[mounts]= ["/sys/fs/cgroup", "/run/lock", "/run/shm", "/run/user", "/sys/fs/fuse/connections", "/sys/kernel/debug", "/sys/kernel/security", "/sys/fs/pstore", "/proc/xen"]
[udev]
[kb_size]= 497104
[kb_used]= 4
[kb_available]= 497100
[percent_used]= 1%
[total_inodes]= 124276
[inodes_used]= 390
[inodes_available]= 123886
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "mode=0755"]
[mounts]= ["/dev"]
[tmpfs]
[kb_size]= 101372
[kb_used]= 188
[kb_available]= 101184
[percent_used]= 1%
[total_inodes]= 126713
[inodes_used]= 259
[inodes_available]= 126454
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "size=10%", "mode=0755"]
[mounts]= ["/run"]
[/dev/xvda1]
[kb_size]= 236876
[kb_used]= 18304
[kb_available]= 206131
[percent_used]= 9%
[total_inodes]= 62248
[inodes_used]= 21
[inodes_available]= 62227
[inodes_percent_used]= 1%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "barrier=0"]
[uuid]= 8957e182-f52e-4e78-a06d-a354dcb7a0e2
[mounts]= ["/boot"]
[proc]
[fs_type]= proc
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[mounts]= ["/proc"]
[sysfs]
[fs_type]= sysfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[mounts]= ["/sys"]
[devpts]
[fs_type]= devpts
[mount_options]= ["rw", "noexec", "nosuid", "gid=5", "mode=0620"]
[mounts]= ["/dev/pts"]
[systemd]
[fs_type]= cgroup
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "none", "name=systemd"]
[mounts]= ["/sys/fs/cgroup/systemd"]
[/dev/xvda]
[mounts]= []
[/dev/xvdb]
[mounts]= []
[/dev/xvdb1]
[fs_type]= swap
[uuid]= d51fcca0-6b10-4934-a572-f3898dfd8840
[label]= SWAP-xvdb1
[mounts]= []
[rootfs]
[fs_type]= rootfs
[mount_options]= ["rw"]
[mounts]= ["/"]
[/dev/disk/by-uuid/cf9bf191-0ed7-4a50-a637-5b65196c2efd]
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "nobarrier", "errors=remount-ro", "data=ordered"]
[mounts]= ["/"]
[by_mountpoint]
[/]
[kb_size]= 25424764
[kb_used]= 1290920
[kb_available]= 22835668
[percent_used]= 6%
[total_inodes]= 1623840
[inodes_used]= 76220
[inodes_available]= 1547620
[inodes_percent_used]= 5%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "nobarrier", "errors=remount-ro", "data=ordered"]
[uuid]= cf9bf191-0ed7-4a50-a637-5b65196c2efd
[devices]= ["/dev/xvda2", "rootfs", "/dev/disk/by-uuid/cf9bf191-0ed7-4a50-a637-5b65196c2efd"]
[/sys/fs/cgroup]
[kb_size]= 4
[kb_used]= 0
[kb_available]= 4
[percent_used]= 0%
[total_inodes]= 126713
[inodes_used]= 2
[inodes_available]= 126711
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw"]
[devices]= ["none"]
[/dev]
[kb_size]= 497104
[kb_used]= 4
[kb_available]= 497100
[percent_used]= 1%
[total_inodes]= 124276
[inodes_used]= 390
[inodes_available]= 123886
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "mode=0755"]
[devices]= ["udev"]
[/run]
[kb_size]= 101372
[kb_used]= 188
[kb_available]= 101184
[percent_used]= 1%
[total_inodes]= 126713
[inodes_used]= 259
[inodes_available]= 126454
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "size=10%", "mode=0755"]
[devices]= ["tmpfs"]
[/run/lock]
[kb_size]= 5120
[kb_used]= 0
[kb_available]= 5120
[percent_used]= 0%
[total_inodes]= 126713
[inodes_used]= 1
[inodes_available]= 126712
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "size=5242880"]
[devices]= ["none"]
[/run/shm]
[kb_size]= 506852
[kb_used]= 0
[kb_available]= 506852
[percent_used]= 0%
[total_inodes]= 126713
[inodes_used]= 1
[inodes_available]= 126712
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev"]
[devices]= ["none"]
[/run/user]
[kb_size]= 102400
[kb_used]= 0
[kb_available]= 102400
[percent_used]= 0%
[total_inodes]= 126713
[inodes_used]= 2
[inodes_available]= 126711
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "size=104857600", "mode=0755"]
[devices]= ["none"]
[/boot]
[kb_size]= 236876
[kb_used]= 18304
[kb_available]= 206131
[percent_used]= 9%
[total_inodes]= 62248
[inodes_used]= 21
[inodes_available]= 62227
[inodes_percent_used]= 1%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "barrier=0"]
[uuid]= 8957e182-f52e-4e78-a06d-a354dcb7a0e2
[devices]= ["/dev/xvda1"]
[/proc]
[fs_type]= proc
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[devices]= ["proc"]
[/sys]
[fs_type]= sysfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[devices]= ["sysfs"]
[/sys/fs/fuse/connections]
[fs_type]= fusectl
[mount_options]= ["rw"]
[devices]= ["none"]
[/sys/kernel/debug]
[fs_type]= debugfs
[mount_options]= ["rw"]
[devices]= ["none"]
[/sys/kernel/security]
[fs_type]= securityfs
[mount_options]= ["rw"]
[devices]= ["none"]
[/dev/pts]
[fs_type]= devpts
[mount_options]= ["rw", "noexec", "nosuid", "gid=5", "mode=0620"]
[devices]= ["devpts"]
[/sys/fs/pstore]
[fs_type]= pstore
[mount_options]= ["rw"]
[devices]= ["none"]
[/sys/fs/cgroup/systemd]
[fs_type]= cgroup
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "none", "name=systemd"]
[devices]= ["systemd"]
[/proc/xen]
[fs_type]= xenfs
[mount_options]= ["rw"]
[devices]= ["none"]
[by_pair]
[/dev/xvda2,/]
[device]= /dev/xvda2
[kb_size]= 25424764
[kb_used]= 1290920
[kb_available]= 22835668
[percent_used]= 6%
[mount]= /
[total_inodes]= 1623840
[inodes_used]= 76220
[inodes_available]= 1547620
[inodes_percent_used]= 5%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "errors=remount-ro", "barrier=0"]
[uuid]= cf9bf191-0ed7-4a50-a637-5b65196c2efd
[none,/sys/fs/cgroup]
[device]= none
[kb_size]= 4
[kb_used]= 0
[kb_available]= 4
[percent_used]= 0%
[mount]= /sys/fs/cgroup
[total_inodes]= 126713
[inodes_used]= 2
[inodes_available]= 126711
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw"]
[udev,/dev]
[device]= udev
[kb_size]= 497104
[kb_used]= 4
[kb_available]= 497100
[percent_used]= 1%
[mount]= /dev
[total_inodes]= 124276
[inodes_used]= 390
[inodes_available]= 123886
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "mode=0755"]
[tmpfs,/run]
[device]= tmpfs
[kb_size]= 101372
[kb_used]= 188
[kb_available]= 101184
[percent_used]= 1%
[mount]= /run
[total_inodes]= 126713
[inodes_used]= 259
[inodes_available]= 126454
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "size=10%", "mode=0755"]
[none,/run/lock]
[device]= none
[kb_size]= 5120
[kb_used]= 0
[kb_available]= 5120
[percent_used]= 0%
[mount]= /run/lock
[total_inodes]= 126713
[inodes_used]= 1
[inodes_available]= 126712
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "size=5242880"]
[none,/run/shm]
[device]= none
[kb_size]= 506852
[kb_used]= 0
[kb_available]= 506852
[percent_used]= 0%
[mount]= /run/shm
[total_inodes]= 126713
[inodes_used]= 1
[inodes_available]= 126712
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev"]
[none,/run/user]
[device]= none
[kb_size]= 102400
[kb_used]= 0
[kb_available]= 102400
[percent_used]= 0%
[mount]= /run/user
[total_inodes]= 126713
[inodes_used]= 2
[inodes_available]= 126711
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "size=104857600", "mode=0755"]
[/dev/xvda1,/boot]
[device]= /dev/xvda1
[kb_size]= 236876
[kb_used]= 18304
[kb_available]= 206131
[percent_used]= 9%
[mount]= /boot
[total_inodes]= 62248
[inodes_used]= 21
[inodes_available]= 62227
[inodes_percent_used]= 1%
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "barrier=0"]
[uuid]= 8957e182-f52e-4e78-a06d-a354dcb7a0e2
[proc,/proc]
[device]= proc
[mount]= /proc
[fs_type]= proc
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[sysfs,/sys]
[device]= sysfs
[mount]= /sys
[fs_type]= sysfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[none,/sys/fs/fuse/connections]
[device]= none
[mount]= /sys/fs/fuse/connections
[fs_type]= fusectl
[mount_options]= ["rw"]
[none,/sys/kernel/debug]
[device]= none
[mount]= /sys/kernel/debug
[fs_type]= debugfs
[mount_options]= ["rw"]
[none,/sys/kernel/security]
[device]= none
[mount]= /sys/kernel/security
[fs_type]= securityfs
[mount_options]= ["rw"]
[devpts,/dev/pts]
[device]= devpts
[mount]= /dev/pts
[fs_type]= devpts
[mount_options]= ["rw", "noexec", "nosuid", "gid=5", "mode=0620"]
[none,/sys/fs/pstore]
[device]= none
[mount]= /sys/fs/pstore
[fs_type]= pstore
[mount_options]= ["rw"]
[systemd,/sys/fs/cgroup/systemd]
[device]= systemd
[mount]= /sys/fs/cgroup/systemd
[fs_type]= cgroup
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "none", "name=systemd"]
[none,/proc/xen]
[device]= none
[mount]= /proc/xen
[fs_type]= xenfs
[mount_options]= ["rw"]
[/dev/xvda,]
[device]= /dev/xvda
[/dev/xvdb,]
[device]= /dev/xvdb
[/dev/xvdb1,]
[device]= /dev/xvdb1
[fs_type]= swap
[uuid]= d51fcca0-6b10-4934-a572-f3898dfd8840
[label]= SWAP-xvdb1
[rootfs,/]
[device]= rootfs
[mount]= /
[fs_type]= rootfs
[mount_options]= ["rw"]
[/dev/disk/by-uuid/cf9bf191-0ed7-4a50-a637-5b65196c2efd,/]
[device]= /dev/disk/by-uuid/cf9bf191-0ed7-4a50-a637-5b65196c2efd
[mount]= /
[fs_type]= ext3
[mount_options]= ["rw", "noatime", "nobarrier", "errors=remount-ro", "data=ordered"]
[command]
[ps]= ps -ef
[hostname]= test02
[machinename]= test02
[fqdn]= test02.takara.org
[domain]= takara.org
[chef_packages]
[ohai]
[version]= 8.7.0
[ohai_root]= /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/ohai-8.7.0/lib/ohai
[chef]
[version]= 12.5.1
[chef_root]= /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.5.1/lib
[etc]
[passwd]
[root]
[dir]= /root
[shell]= /bin/bash
[gecos]= root
[daemon]
[dir]= /usr/sbin
[shell]= /usr/sbin/nologin
[gecos]= daemon
[bin]
[dir]= /bin
[shell]= /usr/sbin/nologin
[gecos]= bin
[sys]
[dir]= /dev
[shell]= /usr/sbin/nologin
[gecos]= sys
[sync]
[dir]= /bin
[shell]= /bin/sync
[gecos]= sync
[games]
[dir]= /usr/games
[shell]= /usr/sbin/nologin
[gecos]= games
[man]
[dir]= /var/cache/man
[shell]= /usr/sbin/nologin
[gecos]= man
[lp]
[dir]= /var/spool/lpd
[shell]= /usr/sbin/nologin
[gecos]= lp
[mail]
[dir]= /var/mail
[shell]= /usr/sbin/nologin
[gecos]= mail
[news]
[dir]= /var/spool/news
[shell]= /usr/sbin/nologin
[gecos]= news
[uucp]
[dir]= /var/spool/uucp
[shell]= /usr/sbin/nologin
[gecos]= uucp
[proxy]
[dir]= /bin
[shell]= /usr/sbin/nologin
[gecos]= proxy
[www-data]
[dir]= /var/www
[shell]= /usr/sbin/nologin
[gecos]= www-data
[backup]
[dir]= /var/backups
[shell]= /usr/sbin/nologin
[gecos]= backup
[list]
[dir]= /var/list
[shell]= /usr/sbin/nologin
[gecos]= Mailing List Manager
[irc]
[dir]= /var/run/ircd
[shell]= /usr/sbin/nologin
[gecos]= ircd
[gnats]
[dir]= /var/lib/gnats
[shell]= /usr/sbin/nologin
[gecos]= Gnats Bug-Reporting System (admin)
[nobody]
[dir]= /nonexistent
[shell]= /usr/sbin/nologin
[gecos]= nobody
[libuuid]
[dir]= /var/lib/libuuid
[shell]=
[gecos]=
[syslog]
[dir]= /home/syslog
[shell]= /bin/false
[gecos]=
[messagebus]
[dir]= /var/run/dbus
[shell]= /bin/false
[gecos]=
[sshd]
[dir]= /var/run/sshd
[shell]= /usr/sbin/nologin
[gecos]=
[group]
[root]
[members]= []
[daemon]
[members]= []
[bin]
[members]= []
[sys]
[members]= []
[adm]
[members]= ["syslog"]
[tty]
[members]= []
[disk]
[members]= []
[lp]
[members]= []
[mail]
[members]= []
[news]
[members]= []
[uucp]
[members]= []
[man]
[members]= []
[proxy]
[members]= []
[kmem]
[members]= []
[dialout]
[members]= []
[fax]
[members]= []
[voice]
[members]= []
[cdrom]
[members]= []
[floppy]
[members]= []
[tape]
[members]= []
[sudo]
[members]= []
[audio]
[members]= []
[dip]
[members]= []
[www-data]
[members]= []
[backup]
[members]= []
[operator]
[members]= []
[list]
[members]= []
[irc]
[members]= []
[src]
[members]= []
[gnats]
[members]= []
[shadow]
[members]= []
[utmp]
[members]= []
[video]
[members]= []
[sasl]
[members]= []
[plugdev]
[members]= []
[staff]
[members]= []
[games]
[members]= []
[users]
[members]= []
[nogroup]
[members]= []
[libuuid]
[members]= []
[netdev]
[members]= []
[crontab]
[members]= []
[syslog]
[members]= []
[messagebus]
[members]= []
[fuse]
[members]= []
[mlocate]
[members]= []
[ssh]
[members]= []
[current_user]= root
[root_group]= root
[block_device]
[ram0]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram1]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram2]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram3]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram4]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram5]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram6]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram7]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram8]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram9]
[size]= 131072
[removable]= 0
[rotational]= 1
[xvda]
[size]= 52428800
[removable]= 0
[rotational]= 0
[xvdb]
[size]= 4194304
[removable]= 0
[rotational]= 0
[loop0]
[size]= 0
[removable]= 0
[rotational]= 1
[loop1]
[size]= 0
[removable]= 0
[rotational]= 1
[loop2]
[size]= 0
[removable]= 0
[rotational]= 1
[loop3]
[size]= 0
[removable]= 0
[rotational]= 1
[loop4]
[size]= 0
[removable]= 0
[rotational]= 1
[loop5]
[size]= 0
[removable]= 0
[rotational]= 1
[loop6]
[size]= 0
[removable]= 0
[rotational]= 1
[loop7]
[size]= 0
[removable]= 0
[rotational]= 1
[ram10]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram11]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram12]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram13]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram14]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram15]
[size]= 131072
[removable]= 0
[rotational]= 1
[recipes]= ["ohai", "ohai::default"]
[expanded_run_list]= ["ohai::default"]
[roles]= []
[cookbooks]
[dummy]
[version]= 0.1.0
[ohai]
[version]= 0.1.0
============================================
Ubuntu14.04 AWS EC2
root@ip-172-31-24-251:/var/chef/cookbooks/ohai# cd
root@ip-172-31-24-251:~# chef-solo -o ohai
[2015-12-12T16:45:52+00:00] WARN: *****************************************
[2015-12-12T16:45:52+00:00] WARN: Did not find config file: /etc/chef/solo.rb, using command line options.
[2015-12-12T16:45:52+00:00] WARN: *****************************************
Starting Chef Client, version 12.5.1
[2015-12-12T16:45:54+00:00] WARN: Run List override has been provided.
[2015-12-12T16:45:54+00:00] WARN: Original Run List: []
[2015-12-12T16:45:54+00:00] WARN: Overridden Run List: [recipe[ohai]]
Compiling Cookbooks...
============================================
[tags]= []
[network]
[interfaces]
[lo]
[mtu]= 65536
[flags]= ["LOOPBACK", "UP", "LOWER_UP"]
[encapsulation]= Loopback
[addresses]
[127.0.0.1]
[family]= inet
[prefixlen]= 8
[netmask]= 255.0.0.0
[scope]= Node
[::1]
[family]= inet6
[prefixlen]= 128
[scope]= Node
[state]= unknown
[eth0]
[type]= eth
[number]= 0
[mtu]= 9001
[flags]= ["BROADCAST", "MULTICAST", "UP", "LOWER_UP"]
[encapsulation]= Ethernet
[addresses]
[0A:65:D3:79:35:0B]
[family]= lladdr
[172.31.24.251]
[family]= inet
[prefixlen]= 20
[netmask]= 255.255.240.0
[broadcast]= 172.31.31.255
[scope]= Global
[fe80::865:d3ff:fe79:350b]
[family]= inet6
[prefixlen]= 64
[scope]= Link
[state]= up
[arp]
[172.31.16.1]= 0a:b4:3f:d8:61:73
[routes]= [{"destination"=>"default", "family"=>"inet", "via"=>"172.31.16.1"}, {"destination"=>"172.31.16.0/20", "family"=>"inet", "scope"=>"link", "proto"=>"kernel", "src"=>"172.31.24.251"}, {"destination"=>"fe80::/64", "family"=>"inet6", "metric"=>"256", "proto"=>"kernel"}]
[default_interface]= eth0
[default_gateway]= 172.31.16.1
[counters]
[network]
[interfaces]
[lo]
[rx]
[bytes]= 0
[packets]= 0
[errors]= 0
[drop]= 0
[overrun]= 0
[tx]
[bytes]= 0
[packets]= 0
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[eth0]
[tx]
[queuelen]= 1000
[bytes]= 766207446
[packets]= 3556656
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[rx]
[bytes]= 722213249
[packets]= 3582535
[errors]= 0
[drop]= 0
[overrun]= 0
[ipaddress]= 172.31.24.251
[macaddress]= 0A:65:D3:79:35:0B
[ec2]
[ami_id]= ami-936d9d93
[ami_launch_index]= 0
[ami_manifest_path]= (unknown)
[block_device_mapping_ami]= /dev/sda1
[block_device_mapping_root]= /dev/sda1
[hostname]= ip-172-31-24-251.ap-northeast-1.compute.internal
[instance_action]= none
[instance_id]= i-13b5dae6
[instance_type]= t2.micro
[local_hostname]= ip-172-31-24-251.ap-northeast-1.compute.internal
[local_ipv4]= 172.31.24.251
[mac]= 0a:65:d3:79:35:0b
[metrics_vhostmd]= <?xml version="1.0" encoding="UTF-8"?>
[network_interfaces_macs]
[0a:65:d3:79:35:0b]
[device_number]= 0
[interface_id]= eni-4ea66216
[ipv4-associations]
[52.69.177.163]= 172.31.24.251
[local_hostname]= ip-172-31-24-251.ap-northeast-1.compute.internal
[local_ipv4s]= 172.31.24.251
[mac]= 0a:65:d3:79:35:0b
[owner_id]= 102321567306
[public_hostname]= ec2-52-69-177-163.ap-northeast-1.compute.amazonaws.com
[public_ipv4s]= 52.69.177.163
[security_group_ids]= sg-f395fa96
[security_groups]= launch-wizard-8
[subnet_id]= subnet-53f8c415
[subnet_ipv4_cidr_block]= 172.31.16.0/20
[vpc_id]= vpc-76648413
[vpc_ipv4_cidr_block]= 172.31.0.0/16
[placement_availability_zone]= ap-northeast-1c
[profile]= default-hvm
[public_hostname]= ec2-52-69-177-163.ap-northeast-1.compute.amazonaws.com
[public_ipv4]= 52.69.177.163
[public_keys_0_openssh_key]= ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCpypXDxX4BKhZYzsZJQnL+mWHOw1MGYHAcd36IkYA/7nJZHWvmIzu/D+tLlqyp9PIjHse3Py3s9P2ARACr5in4oIbM1drbTUg0k1s4QgdXvosQUXRJTkOfpnsBBVXAh9wlBTLAt5o43n3YL0LHICunJaMUOOR0wmoIlB/AZcfMlomD2H7UrKahNoPV+3TpNC+RrdMbCoMr5IPOF2dHEaCvGNCjE1JsrgptrwLPcx+WlBT7Gi8rtZmHIlya4ZJ1QPukTW/zPK3McC8LlRXnfb7ECyxvRhU9WVmhjDmYsyYV3PD1caoWLT2d1mdDqvF0Gmt17zoZk9By5CWy74JSj5oD takara2
[reservation_id]= r-c5469730
[security_groups]= ["launch-wizard-8"]
[kernel]
[name]= Linux
[release]= 3.13.0-48-generic
[version]= #80-Ubuntu SMP Thu Mar 12 11:16:15 UTC 2015
[machine]= x86_64
[os]= GNU/Linux
[modules]
[dm_crypt]
[size]= 23177
[refcount]= 0
[crct10dif_pclmul]
[size]= 14289
[refcount]= 0
[crc32_pclmul]
[size]= 13113
[refcount]= 0
[syscopyarea]
[size]= 12529
[refcount]= 0
[sysfillrect]
[size]= 12701
[refcount]= 0
[sysimgblt]
[size]= 12640
[refcount]= 0
[fb_sys_fops]
[size]= 12703
[refcount]= 0
[ghash_clmulni_intel]
[size]= 13216
[refcount]= 0
[serio_raw]
[size]= 13462
[refcount]= 0
[isofs]
[size]= 39837
[refcount]= 0
[aesni_intel]
[size]= 55624
[refcount]= 0
[aes_x86_64]
[size]= 17131
[refcount]= 1
[glue_helper]
[size]= 13990
[refcount]= 1
[lrw]
[size]= 13286
[refcount]= 1
[gf128mul]
[size]= 14951
[refcount]= 1
[ablk_helper]
[size]= 13597
[refcount]= 1
[cryptd]
[size]= 20359
[refcount]= 3
[psmouse]
[size]= 106714
[refcount]= 0
[floppy]
[size]= 69418
[refcount]= 0
[cloud_v2]
[public_ipv4_addrs]= ["52.69.177.163"]
[local_ipv4_addrs]= ["172.31.24.251"]
[provider]= ec2
[public_hostname]= ec2-52-69-177-163.ap-northeast-1.compute.amazonaws.com
[local_hostname]= ip-172-31-24-251.ap-northeast-1.compute.internal
[public_ipv4]= 52.69.177.163
[local_ipv4]= 172.31.24.251
[ip6address]= fe80::865:d3ff:fe79:350b
[languages]
[python]
[version]= 2.7.6
[builddate]= Mar 22 2014, 22:59:56
[c]
[gcc]
[version]= 4.8.4
[description]= gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04)
[ruby]
[platform]= x86_64-linux
[version]= 2.1.6
[release_date]= 2015-04-13
[target]= x86_64-unknown-linux-gnu
[target_cpu]= x86_64
[target_vendor]= unknown
[target_os]= linux
[host]= x86_64-unknown-linux-gnu
[host_cpu]= x86_64
[host_os]= linux-gnu
[host_vendor]= unknown
[bin_dir]= /opt/chef/embedded/bin
[ruby_bin]= /opt/chef/embedded/bin/ruby
[gems_dir]= /opt/chef/embedded/lib/ruby/gems/2.1.0
[gem_bin]= /opt/chef/embedded/bin/gem
[perl]
[version]= 5.18.2
[archname]= x86_64-linux-gnu-thread-multi
[root_group]= root
[command]
[ps]= ps -ef
[filesystem]
[/dev/xvda1]
[kb_size]= 8115168
[kb_used]= 1303532
[kb_available]= 6376360
[percent_used]= 17%
[mount]= /
[total_inodes]= 524288
[inodes_used]= 81205
[inodes_available]= 443083
[inodes_percent_used]= 16%
[fs_type]= ext4
[mount_options]= ["rw", "discard"]
[uuid]= 2ed4c374-2ddb-4a75-af24-98df753dbf6d
[label]= cloudimg-rootfs
[none]
[kb_size]= 102400
[kb_used]= 0
[kb_available]= 102400
[percent_used]= 0%
[mount]= /sys/fs/pstore
[total_inodes]= 127036
[inodes_used]= 2
[inodes_available]= 127034
[inodes_percent_used]= 1%
[fs_type]= pstore
[mount_options]= ["rw"]
[udev]
[kb_size]= 503188
[kb_used]= 12
[kb_available]= 503176
[percent_used]= 1%
[mount]= /dev
[total_inodes]= 125797
[inodes_used]= 403
[inodes_available]= 125394
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "mode=0755"]
[tmpfs]
[kb_size]= 101632
[kb_used]= 324
[kb_available]= 101308
[percent_used]= 1%
[mount]= /run
[total_inodes]= 127036
[inodes_used]= 307
[inodes_available]= 126729
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "size=10%", "mode=0755"]
[proc]
[mount]= /proc
[fs_type]= proc
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[sysfs]
[mount]= /sys
[fs_type]= sysfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[devpts]
[mount]= /dev/pts
[fs_type]= devpts
[mount_options]= ["rw", "noexec", "nosuid", "gid=5", "mode=0620"]
[systemd]
[mount]= /sys/fs/cgroup/systemd
[fs_type]= cgroup
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "none", "name=systemd"]
[rootfs]
[mount]= /
[fs_type]= rootfs
[mount_options]= ["rw"]
[/dev/disk/by-uuid/2ed4c374-2ddb-4a75-af24-98df753dbf6d]
[mount]= /
[fs_type]= ext4
[mount_options]= ["rw", "relatime", "discard", "data=ordered"]
[cpu]
[0]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 62
[model_name]= Intel(R) Xeon(R) CPU E5-2670 v2 @ 2.50GHz
[stepping]= 4
[mhz]= 2500.090
[cache_size]= 25600 KB
[physical_id]= 0
[core_id]= 0
[cores]= 1
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "mmx", "fxsr", "sse", "sse2", "ht", "syscall", "nx", "rdtscp", "lm", "constant_tsc", "rep_good", "nopl", "xtopology", "eagerfpu", "pni", "pclmulqdq", "ssse3", "cx16", "pcid", "sse4_1", "sse4_2", "x2apic", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "hypervisor", "lahf_lm", "xsaveopt", "fsgsbase", "smep", "erms"]
[memory]
[swap]
[cached]= 0kB
[total]= 0kB
[free]= 0kB
[total]= 1016292kB
[free]= 86312kB
[buffers]= 185952kB
[cached]= 471312kB
[active]= 491428kB
[inactive]= 300852kB
[dirty]= 2788kB
[writeback]= 0kB
[anon_pages]= 135024kB
[mapped]= 10608kB
[slab]= 122400kB
[slab_reclaimable]= 111052kB
[slab_unreclaim]= 11348kB
[page_tables]= 2772kB
[nfs_unstable]= 0kB
[bounce]= 0kB
[commit_limit]= 508144kB
[committed_as]= 198120kB
[vmalloc_total]= 34359738367kB
[vmalloc_used]= 2368kB
[vmalloc_chunk]= 34359731899kB
[os]= linux
[os_version]= 3.13.0-48-generic
[lsb]
[id]= Ubuntu
[release]= 14.04
[codename]= trusty
[description]= Ubuntu 14.04.2 LTS
[platform]= ubuntu
[platform_version]= 14.04
[platform_family]= debian
[virtualization]
[systems]
[xen]= guest
[system]= xen
[role]= guest
[keys]
[ssh]
[host_rsa_public]= AAAAB3NzaC1yc2EAAAADAQABAAABAQCkZ1MmwjI6e+d+ZOLRLsWBO9NblYBXr+LVf7UY6bhYhtWaTSxMIHKpaw/KabJJZ4XgRCkIdEprJes3a4OrOqKlxKV0NMCPRL08R6LIuSal/HXq5iBHA47k6bmXCh3AeFEDR/aFXz5b7ke2jaXckEOuNqKfBgQjKyCDAos7CiunNUxPpwJ16YcGL9Xry2jgB3Q0BhDyCjz6Ld/n4tYZi2MvOVAM6zylX9luW114wuxFzqdqvSHAAASHULdg4nK837sYyaPjuzBlc8/ZlSrufto1Et4XMdLwQjqRlwxWWtBmOShUXP1kIPNtOc0JHCygxtmpIskYlZxykSXnbWeXKYEj
[host_dsa_public]= AAAAB3NzaC1kc3MAAACBAOTWVmBIvQjTBztycF/Mju+aO375qkajw/UqgQuoYiyz4SuMIw+3aPHSNWWYl1PXk5FXB7sO1LTDtjLZL/UXyEiNLZPL3nSLRzaH/KtmLghHxqP3eoPfWSxMLMfSH925wMi9/w1puG508cbHqbtrUUv9XDPsJADXwK9rESF/XSEhAAAAFQDmBBsmQHwEMdYZOYCeLlvaOyncBwAAAIBu3vz/d4wIEDmPjOWx+vspgwhXLkydaA7ovcWBhzXB+fkesCrmfRUtHB8trF58iZZxfRfoVIsrNTYIDEAAWSO+G8DIfGhV6sTzMA2XuzZLN6QO4tp3toBt6/Cyp/gSoIj+yFX0JrUOS1PcJh2ylz1l41ZdmcSJ9VE98GxVKYgIvgAAAIEAx1Y9GNb/rak5qckHYIbty3yT1h5Tz9gfFITecIeX790GnKvbQaX5B3r2y3JwPrYDm8HeALPZYQR8z85ObMIEfiWUlhrY0bLF57F2Y//yN6BXBsOIxuQ850IEvbkzkhv7zaoLA4FUEKlrt9AW3CoeXzB0tDvsUDtUZ4ddeB/iRZw=
[host_ecdsa_public]= AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPjCawL0rk6XCJqoSHlyRBXEg+xGq22+3zkFv76Unw6zXBNJNMnwqfHL537eRGGUNOjzUg95kC2evfPbjaRWeBY=
[host_ecdsa_type]= ecdsa-sha2-nistp256
[chef_packages]
[ohai]
[version]= 8.7.0
[ohai_root]= /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/ohai-8.7.0/lib/ohai
[chef]
[version]= 12.5.1
[chef_root]= /opt/chef/embedded/lib/ruby/gems/2.1.0/gems/chef-12.5.1/lib
[filesystem2]
[by_device]
[/dev/xvda1]
[kb_size]= 8115168
[kb_used]= 1303532
[kb_available]= 6376360
[percent_used]= 17%
[total_inodes]= 524288
[inodes_used]= 81205
[inodes_available]= 443083
[inodes_percent_used]= 16%
[fs_type]= ext4
[mount_options]= ["rw", "discard"]
[uuid]= 2ed4c374-2ddb-4a75-af24-98df753dbf6d
[label]= cloudimg-rootfs
[mounts]= ["/"]
[none]
[kb_size]= 102400
[kb_used]= 0
[kb_available]= 102400
[percent_used]= 0%
[total_inodes]= 127036
[inodes_used]= 2
[inodes_available]= 127034
[inodes_percent_used]= 1%
[fs_type]= pstore
[mount_options]= ["rw"]
[mounts]= ["/sys/fs/cgroup", "/run/lock", "/run/shm", "/run/user", "/sys/fs/fuse/connections", "/sys/kernel/debug", "/sys/kernel/security", "/sys/fs/pstore"]
[udev]
[kb_size]= 503188
[kb_used]= 12
[kb_available]= 503176
[percent_used]= 1%
[total_inodes]= 125797
[inodes_used]= 403
[inodes_available]= 125394
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "mode=0755"]
[mounts]= ["/dev"]
[tmpfs]
[kb_size]= 101632
[kb_used]= 324
[kb_available]= 101308
[percent_used]= 1%
[total_inodes]= 127036
[inodes_used]= 307
[inodes_available]= 126729
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "size=10%", "mode=0755"]
[mounts]= ["/run"]
[proc]
[fs_type]= proc
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[mounts]= ["/proc"]
[sysfs]
[fs_type]= sysfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[mounts]= ["/sys"]
[devpts]
[fs_type]= devpts
[mount_options]= ["rw", "noexec", "nosuid", "gid=5", "mode=0620"]
[mounts]= ["/dev/pts"]
[systemd]
[fs_type]= cgroup
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "none", "name=systemd"]
[mounts]= ["/sys/fs/cgroup/systemd"]
[/dev/xvda]
[mounts]= []
[rootfs]
[fs_type]= rootfs
[mount_options]= ["rw"]
[mounts]= ["/"]
[/dev/disk/by-uuid/2ed4c374-2ddb-4a75-af24-98df753dbf6d]
[fs_type]= ext4
[mount_options]= ["rw", "relatime", "discard", "data=ordered"]
[mounts]= ["/"]
[by_mountpoint]
[/]
[kb_size]= 8115168
[kb_used]= 1303532
[kb_available]= 6376360
[percent_used]= 17%
[total_inodes]= 524288
[inodes_used]= 81205
[inodes_available]= 443083
[inodes_percent_used]= 16%
[fs_type]= ext4
[mount_options]= ["rw", "relatime", "discard", "data=ordered"]
[uuid]= 2ed4c374-2ddb-4a75-af24-98df753dbf6d
[label]= cloudimg-rootfs
[devices]= ["/dev/xvda1", "rootfs", "/dev/disk/by-uuid/2ed4c374-2ddb-4a75-af24-98df753dbf6d"]
[/sys/fs/cgroup]
[kb_size]= 4
[kb_used]= 0
[kb_available]= 4
[percent_used]= 0%
[total_inodes]= 127036
[inodes_used]= 2
[inodes_available]= 127034
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw"]
[devices]= ["none"]
[/dev]
[kb_size]= 503188
[kb_used]= 12
[kb_available]= 503176
[percent_used]= 1%
[total_inodes]= 125797
[inodes_used]= 403
[inodes_available]= 125394
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "mode=0755"]
[devices]= ["udev"]
[/run]
[kb_size]= 101632
[kb_used]= 324
[kb_available]= 101308
[percent_used]= 1%
[total_inodes]= 127036
[inodes_used]= 307
[inodes_available]= 126729
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "size=10%", "mode=0755"]
[devices]= ["tmpfs"]
[/run/lock]
[kb_size]= 5120
[kb_used]= 0
[kb_available]= 5120
[percent_used]= 0%
[total_inodes]= 127036
[inodes_used]= 1
[inodes_available]= 127035
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "size=5242880"]
[devices]= ["none"]
[/run/shm]
[kb_size]= 508144
[kb_used]= 0
[kb_available]= 508144
[percent_used]= 0%
[total_inodes]= 127036
[inodes_used]= 1
[inodes_available]= 127035
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev"]
[devices]= ["none"]
[/run/user]
[kb_size]= 102400
[kb_used]= 0
[kb_available]= 102400
[percent_used]= 0%
[total_inodes]= 127036
[inodes_used]= 2
[inodes_available]= 127034
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "size=104857600", "mode=0755"]
[devices]= ["none"]
[/proc]
[fs_type]= proc
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[devices]= ["proc"]
[/sys]
[fs_type]= sysfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[devices]= ["sysfs"]
[/sys/fs/fuse/connections]
[fs_type]= fusectl
[mount_options]= ["rw"]
[devices]= ["none"]
[/sys/kernel/debug]
[fs_type]= debugfs
[mount_options]= ["rw"]
[devices]= ["none"]
[/sys/kernel/security]
[fs_type]= securityfs
[mount_options]= ["rw"]
[devices]= ["none"]
[/dev/pts]
[fs_type]= devpts
[mount_options]= ["rw", "noexec", "nosuid", "gid=5", "mode=0620"]
[devices]= ["devpts"]
[/sys/fs/pstore]
[fs_type]= pstore
[mount_options]= ["rw"]
[devices]= ["none"]
[/sys/fs/cgroup/systemd]
[fs_type]= cgroup
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "none", "name=systemd"]
[devices]= ["systemd"]
[by_pair]
[/dev/xvda1,/]
[device]= /dev/xvda1
[kb_size]= 8115168
[kb_used]= 1303532
[kb_available]= 6376360
[percent_used]= 17%
[mount]= /
[total_inodes]= 524288
[inodes_used]= 81205
[inodes_available]= 443083
[inodes_percent_used]= 16%
[fs_type]= ext4
[mount_options]= ["rw", "discard"]
[uuid]= 2ed4c374-2ddb-4a75-af24-98df753dbf6d
[label]= cloudimg-rootfs
[none,/sys/fs/cgroup]
[device]= none
[kb_size]= 4
[kb_used]= 0
[kb_available]= 4
[percent_used]= 0%
[mount]= /sys/fs/cgroup
[total_inodes]= 127036
[inodes_used]= 2
[inodes_available]= 127034
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw"]
[udev,/dev]
[device]= udev
[kb_size]= 503188
[kb_used]= 12
[kb_available]= 503176
[percent_used]= 1%
[mount]= /dev
[total_inodes]= 125797
[inodes_used]= 403
[inodes_available]= 125394
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "mode=0755"]
[tmpfs,/run]
[device]= tmpfs
[kb_size]= 101632
[kb_used]= 324
[kb_available]= 101308
[percent_used]= 1%
[mount]= /run
[total_inodes]= 127036
[inodes_used]= 307
[inodes_available]= 126729
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "size=10%", "mode=0755"]
[none,/run/lock]
[device]= none
[kb_size]= 5120
[kb_used]= 0
[kb_available]= 5120
[percent_used]= 0%
[mount]= /run/lock
[total_inodes]= 127036
[inodes_used]= 1
[inodes_available]= 127035
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "size=5242880"]
[none,/run/shm]
[device]= none
[kb_size]= 508144
[kb_used]= 0
[kb_available]= 508144
[percent_used]= 0%
[mount]= /run/shm
[total_inodes]= 127036
[inodes_used]= 1
[inodes_available]= 127035
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "nosuid", "nodev"]
[none,/run/user]
[device]= none
[kb_size]= 102400
[kb_used]= 0
[kb_available]= 102400
[percent_used]= 0%
[mount]= /run/user
[total_inodes]= 127036
[inodes_used]= 2
[inodes_available]= 127034
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "size=104857600", "mode=0755"]
[proc,/proc]
[device]= proc
[mount]= /proc
[fs_type]= proc
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[sysfs,/sys]
[device]= sysfs
[mount]= /sys
[fs_type]= sysfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[none,/sys/fs/fuse/connections]
[device]= none
[mount]= /sys/fs/fuse/connections
[fs_type]= fusectl
[mount_options]= ["rw"]
[none,/sys/kernel/debug]
[device]= none
[mount]= /sys/kernel/debug
[fs_type]= debugfs
[mount_options]= ["rw"]
[none,/sys/kernel/security]
[device]= none
[mount]= /sys/kernel/security
[fs_type]= securityfs
[mount_options]= ["rw"]
[devpts,/dev/pts]
[device]= devpts
[mount]= /dev/pts
[fs_type]= devpts
[mount_options]= ["rw", "noexec", "nosuid", "gid=5", "mode=0620"]
[none,/sys/fs/pstore]
[device]= none
[mount]= /sys/fs/pstore
[fs_type]= pstore
[mount_options]= ["rw"]
[systemd,/sys/fs/cgroup/systemd]
[device]= systemd
[mount]= /sys/fs/cgroup/systemd
[fs_type]= cgroup
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "none", "name=systemd"]
[/dev/xvda,]
[device]= /dev/xvda
[rootfs,/]
[device]= rootfs
[mount]= /
[fs_type]= rootfs
[mount_options]= ["rw"]
[/dev/disk/by-uuid/2ed4c374-2ddb-4a75-af24-98df753dbf6d,/]
[device]= /dev/disk/by-uuid/2ed4c374-2ddb-4a75-af24-98df753dbf6d
[mount]= /
[fs_type]= ext4
[mount_options]= ["rw", "relatime", "discard", "data=ordered"]
[uptime]= 158 days 15 hours 19 minutes 04 seconds
[idletime]= 158 days 12 hours 13 minutes 25 seconds
[hostname]= ip-172-31-24-251
[machinename]= ip-172-31-24-251
[fqdn]= ip-172-31-24-251.ap-northeast-1.compute.internal
[domain]= ap-northeast-1.compute.internal
[etc]
[passwd]
[root]
[dir]= /root
[shell]= /bin/bash
[gecos]= root
[daemon]
[dir]= /usr/sbin
[shell]= /usr/sbin/nologin
[gecos]= daemon
[bin]
[dir]= /bin
[shell]= /usr/sbin/nologin
[gecos]= bin
[sys]
[dir]= /dev
[shell]= /usr/sbin/nologin
[gecos]= sys
[sync]
[dir]= /bin
[shell]= /bin/sync
[gecos]= sync
[games]
[dir]= /usr/games
[shell]= /usr/sbin/nologin
[gecos]= games
[man]
[dir]= /var/cache/man
[shell]= /usr/sbin/nologin
[gecos]= man
[lp]
[dir]= /var/spool/lpd
[shell]= /usr/sbin/nologin
[gecos]= lp
[mail]
[dir]= /var/mail
[shell]= /usr/sbin/nologin
[gecos]= mail
[news]
[dir]= /var/spool/news
[shell]= /usr/sbin/nologin
[gecos]= news
[uucp]
[dir]= /var/spool/uucp
[shell]= /usr/sbin/nologin
[gecos]= uucp
[proxy]
[dir]= /bin
[shell]= /usr/sbin/nologin
[gecos]= proxy
[www-data]
[dir]= /var/www
[shell]= /usr/sbin/nologin
[gecos]= www-data
[backup]
[dir]= /var/backups
[shell]= /usr/sbin/nologin
[gecos]= backup
[list]
[dir]= /var/list
[shell]= /usr/sbin/nologin
[gecos]= Mailing List Manager
[irc]
[dir]= /var/run/ircd
[shell]= /usr/sbin/nologin
[gecos]= ircd
[gnats]
[dir]= /var/lib/gnats
[shell]= /usr/sbin/nologin
[gecos]= Gnats Bug-Reporting System (admin)
[nobody]
[dir]= /nonexistent
[shell]= /usr/sbin/nologin
[gecos]= nobody
[libuuid]
[dir]= /var/lib/libuuid
[shell]=
[gecos]=
[syslog]
[dir]= /home/syslog
[shell]= /bin/false
[gecos]=
[messagebus]
[dir]= /var/run/dbus
[shell]= /bin/false
[gecos]=
[landscape]
[dir]= /var/lib/landscape
[shell]= /bin/false
[gecos]=
[sshd]
[dir]= /var/run/sshd
[shell]= /usr/sbin/nologin
[gecos]=
[pollinate]
[dir]= /var/cache/pollinate
[shell]= /bin/false
[gecos]=
[ubuntu]
[dir]= /home/ubuntu
[shell]= /bin/bash
[gecos]= Ubuntu
[group]
[root]
[members]= []
[daemon]
[members]= []
[bin]
[members]= []
[sys]
[members]= []
[adm]
[members]= ["syslog", "ubuntu"]
[tty]
[members]= []
[disk]
[members]= []
[lp]
[members]= []
[mail]
[members]= []
[news]
[members]= []
[uucp]
[members]= []
[man]
[members]= []
[proxy]
[members]= []
[kmem]
[members]= []
[dialout]
[members]= ["ubuntu"]
[fax]
[members]= []
[voice]
[members]= []
[cdrom]
[members]= ["ubuntu"]
[floppy]
[members]= ["ubuntu"]
[tape]
[members]= []
[sudo]
[members]= ["ubuntu"]
[audio]
[members]= ["ubuntu"]
[dip]
[members]= ["ubuntu"]
[www-data]
[members]= []
[backup]
[members]= []
[operator]
[members]= []
[list]
[members]= []
[irc]
[members]= []
[src]
[members]= []
[gnats]
[members]= []
[shadow]
[members]= []
[utmp]
[members]= []
[video]
[members]= ["ubuntu"]
[sasl]
[members]= []
[plugdev]
[members]= ["ubuntu"]
[staff]
[members]= []
[games]
[members]= []
[users]
[members]= []
[nogroup]
[members]= []
[libuuid]
[members]= []
[netdev]
[members]= ["ubuntu"]
[crontab]
[members]= []
[syslog]
[members]= []
[fuse]
[members]= []
[messagebus]
[members]= []
[mlocate]
[members]= []
[ssh]
[members]= []
[landscape]
[members]= []
[admin]
[members]= []
[ubuntu]
[members]= []
[current_user]= root
[dmi]
[dmidecode_version]= 2.12
[smbios_version]= 2.4
[structures]
[count]= 11
[size]= 310
[bios]
[all_records]= [{"record_id"=>"0x0000", "size"=>"0", "application_identifier"=>"BIOS Information", "Vendor"=>"Xen", "Version"=>"4.2.amazon", "Release Date"=>"05/06/2015", "Address"=>"0xE8000", "Runtime Size"=>"96 kB", "ROM Size"=>"64 kB", "Characteristics"=>{"PCI is supported"=>nil, "EDD is supported"=>nil, "Targeted content distribution is supported"=>nil}, "BIOS Revision"=>"4.2"}]
[vendor]= Xen
[version]= 4.2.amazon
[release_date]= 05/06/2015
[address]= 0xE8000
[runtime_size]= 96 kB
[rom_size]= 64 kB
[bios_revision]= 4.2
[system]
[all_records]= [{"record_id"=>"0x0100", "size"=>"1", "application_identifier"=>"System Information", "Manufacturer"=>"Xen", "Product Name"=>"HVM domU", "Version"=>"4.2.amazon", "Serial Number"=>"ec29878d-0851-42aa-0bd8-ca7bc116885a", "UUID"=>"EC29878D-0851-42AA-0BD8-CA7BC116885A", "Wake-up Type"=>"Power Switch", "SKU Number"=>"Not Specified", "Family"=>"Not Specified"}]
[manufacturer]= Xen
[product_name]= HVM domU
[version]= 4.2.amazon
[serial_number]= ec29878d-0851-42aa-0bd8-ca7bc116885a
[uuid]= EC29878D-0851-42AA-0BD8-CA7BC116885A
[wake_up_type]= Power Switch
[sku_number]= Not Specified
[family]= Not Specified
[chassis]
[all_records]= [{"record_id"=>"0x0300", "size"=>"3", "application_identifier"=>"Chassis Information", "Manufacturer"=>"Xen", "Type"=>"Other", "Lock"=>"Not Present", "Version"=>"Not Specified", "Serial Number"=>"Not Specified", "Asset Tag"=>"Not Specified", "Boot-up State"=>"Safe", "Power Supply State"=>"Safe", "Thermal State"=>"Safe", "Security Status"=>"Unknown"}]
[manufacturer]= Xen
[type]= Other
[lock]= Not Present
[version]= Not Specified
[serial_number]= Not Specified
[asset_tag]= Not Specified
[boot_up_state]= Safe
[power_supply_state]= Safe
[thermal_state]= Safe
[security_status]= Unknown
[processor]
[all_records]= [{"record_id"=>"0x0401", "size"=>"4", "application_identifier"=>"Processor Information", "Socket Designation"=>"CPU 1", "Type"=>"Central Processor", "Family"=>"Other", "Manufacturer"=>"Intel", "ID"=>"E4 06 03 00 FF FB 89 17", "Version"=>"Not Specified", "Voltage"=>"Unknown", "External Clock"=>"Unknown", "Max Speed"=>"2500 MHz", "Current Speed"=>"2500 MHz", "Status"=>"Populated, Enabled", "Upgrade"=>"Other"}]
[socket_designation]= CPU 1
[type]= Central Processor
[family]= Other
[manufacturer]= Intel
[id]= E4 06 03 00 FF FB 89 17
[version]= Not Specified
[voltage]= Unknown
[external_clock]= Unknown
[max_speed]= 2500 MHz
[current_speed]= 2500 MHz
[status]= Populated, Enabled
[upgrade]= Other
[oem_strings]
[all_records]= [{"record_id"=>"0x0B00", "size"=>"11", "application_identifier"=>"OEM Strings", "String 1"=>"Xen"}]
[string_1]= Xen
[init_package]= init
[vmware]
[block_device]
[ram0]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram1]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram2]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram3]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram4]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram5]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram6]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram7]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram8]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram9]
[size]= 131072
[removable]= 0
[rotational]= 1
[xvda]
[size]= 16777216
[removable]= 0
[rotational]= 0
[loop0]
[size]= 0
[removable]= 0
[rotational]= 1
[loop1]
[size]= 0
[removable]= 0
[rotational]= 1
[loop2]
[size]= 0
[removable]= 0
[rotational]= 1
[loop3]
[size]= 0
[removable]= 0
[rotational]= 1
[loop4]
[size]= 0
[removable]= 0
[rotational]= 1
[loop5]
[size]= 0
[removable]= 0
[rotational]= 1
[loop6]
[size]= 0
[removable]= 0
[rotational]= 1
[loop7]
[size]= 0
[removable]= 0
[rotational]= 1
[ram10]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram11]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram12]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram13]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram14]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram15]
[size]= 131072
[removable]= 0
[rotational]= 1
[cloud]
[public_ips]= ["52.69.177.163"]
[private_ips]= ["172.31.24.251"]
[public_ipv4]= 52.69.177.163
[public_hostname]= ec2-52-69-177-163.ap-northeast-1.compute.amazonaws.com
[local_ipv4]= 172.31.24.251
[local_hostname]= ip-172-31-24-251.ap-northeast-1.compute.internal
[provider]= ec2
[recipes]= ["ohai", "ohai::default"]
[expanded_run_list]= ["ohai::default"]
[roles]= []
[cookbooks]
[dummy]
[version]= 0.1.0
[ohai]
[version]= 0.1.0
============================================
Ubunut14.04 Digital Ocean
root@server1:/var/chef/cookbooks# chef-solo -o ohai
[2015-12-12T16:53:21+00:00] WARN: *****************************************
[2015-12-12T16:53:21+00:00] WARN: Did not find config file: /etc/chef/solo.rb, using command line options.
[2015-12-12T16:53:21+00:00] WARN: *****************************************
Starting Chef Client, version 12.4.1
[2015-12-12T16:53:24+00:00] WARN: Run List override has been provided.
[2015-12-12T16:53:24+00:00] WARN: Original Run List: []
[2015-12-12T16:53:24+00:00] WARN: Overridden Run List: [recipe[ohai]]
Compiling Cookbooks...
============================================
[tags]= []
[keys]
[ssh]
[host_rsa_public]= AAAAB3NzaC1yc2EAAAADAQABAAABAQCuWgfhPJLyPlqA7KEkc+2S+ErXJ9HF0vC2HKOJXFIxd1AfuiiYInQO+utaiqpcY+mqAgZW66yullNw2v0BYBFL7gGUGTpv8U1kIZiDSQikfaBGN43+IEiEJBGy7IXXwfq/t3CnEBI1F6H95d2u+gV+33pz+mpTXjtFVIIOVEDcqUIPcWLruW4KqYSxGAuEbU8lkJBAaJOeiTg8py2xgtjRszRgmV6jxlG7Wa6K/DwdOtrfZR0YeJcP+ibT9qbMcgUKwEGT6un0Wg8s+vNOGhJnAynBBA+XBz6Gm3+bD6xF45Ed9J1k7tZdQChN3wHujb6PqMU1poOfC0gcW1mSvNVd
[host_dsa_public]= AAAAB3NzaC1kc3MAAACBAO72SGLfMI491+TeAJuH30R85Ed/GRPBnWawdxjLAyFWrnhJYE+zAncT6Z8NrmFYXF/LYe7TsqhqDMp5yLYj3cE8bgaoEElODxx+GVVuvqYREMkuXAlYgwcvCy5odRBUmZcqK7uTB3aG9wCmFC5DhAG2MqTA87thYqz/2jBmQxrzAAAAFQCM0+kIUQGiBn+UpBC0z+HH6qD6TwAAAIBV5V8GCcncwV80LF4CezH7ajacdZp4z4DugA/sjLJU7gfkGtMHBONlSHU1s3bwlmATxhbNnN55DRMnBqnaj7Hr+ff5Pow8UNe7d3t/O4S3Dey+FjQUroo8T2KxxSobH9WeD8YGL7KZo1YN2zofDOU/t0o4MPggcIvi0wyfRWboxAAAAIEAyWt/aFpohUcdIqK1V1vHVR141S1KxJHxuROd62/YWOAaiT9fZGZkDQZFAD0doJf2PRy9U6XuDM7aPUwu81UlmtYZhTYW026l33WRdPG99VXTaENEcxRsdIqxOAvf+vFbeybmYMeYqJ0npY9OIDw2wfXsI6OK3+3bJiVkUQ0QFaU=
[host_ecdsa_public]= AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIoEoFGZerGbBkk1QlsT5pMyXlCzd+xoigZurD28aQdPFlgHh4ZKUDMuwrY8aR+7xm+8FqTpwRS8URTACM6GhTU=
[host_ecdsa_type]= ecdsa-sha2-nistp256
[command]
[ps]= ps -ef
[uptime]= 272 days 13 hours 59 minutes 19 seconds
[idletime]= 271 days 09 hours 25 minutes 31 seconds
[network]
[interfaces]
[lo]
[mtu]= 65536
[flags]= ["LOOPBACK", "UP", "LOWER_UP"]
[encapsulation]= Loopback
[addresses]
[127.0.0.1]
[family]= inet
[prefixlen]= 8
[netmask]= 255.0.0.0
[scope]= Node
[::1]
[family]= inet6
[prefixlen]= 128
[scope]= Node
[state]= unknown
[eth0]
[type]= eth
[number]= 0
[mtu]= 1500
[flags]= ["BROADCAST", "MULTICAST", "UP", "LOWER_UP"]
[encapsulation]= Ethernet
[addresses]
[04:01:1C:E1:C7:01]
[family]= lladdr
[107.170.211.69]
[family]= inet
[prefixlen]= 20
[netmask]= 255.255.240.0
[broadcast]= 107.170.223.255
[scope]= Global
[fe80::601:1cff:fee1:c701]
[family]= inet6
[prefixlen]= 64
[scope]= Link
[state]= up
[arp]
[107.170.211.60]= 04:01:18:6a:c1:01
[107.170.216.49]= 04:01:15:dc:79:01
[107.170.211.182]= 04:01:66:5d:25:01
[107.170.208.1]= 00:00:5e:00:01:69
[routes]= [{"destination"=>"default", "family"=>"inet", "via"=>"107.170.208.1"}, {"destination"=>"107.170.208.0/20", "family"=>"inet", "scope"=>"link", "proto"=>"kernel", "src"=>"107.170.211.69"}, {"destination"=>"fe80::/64", "family"=>"inet6", "metric"=>"256", "proto"=>"kernel"}]
[default_interface]= eth0
[default_gateway]= 107.170.208.1
[counters]
[network]
[interfaces]
[lo]
[rx]
[bytes]= 8954624
[packets]= 36670
[errors]= 0
[drop]= 0
[overrun]= 0
[tx]
[bytes]= 8954624
[packets]= 36670
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[eth0]
[tx]
[queuelen]= 1000
[bytes]= 8191004503
[packets]= 42458696
[errors]= 0
[drop]= 0
[carrier]= 0
[collisions]= 0
[rx]
[bytes]= 44027340150
[packets]= 36610590
[errors]= 0
[drop]= 0
[overrun]= 0
[ipaddress]= 107.170.211.69
[macaddress]= 04:01:1C:E1:C7:01
[cpu]
[0]
[vendor_id]= GenuineIntel
[family]= 6
[model]= 62
[model_name]= Intel(R) Xeon(R) CPU E5-2630L v2 @ 2.40GHz
[stepping]= 4
[mhz]= 2399.998
[cache_size]= 15360 KB
[physical_id]= 0
[core_id]= 0
[cores]= 1
[flags]= ["fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", "cx8", "apic", "sep", "mtrr", "pge", "mca", "cmov", "pat", "pse36", "clflush", "mmx", "fxsr", "sse", "sse2", "ss", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "rep_good", "nopl", "eagerfpu", "pni", "pclmulqdq", "vmx", "ssse3", "cx16", "pcid", "sse4_1", "sse4_2", "x2apic", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "hypervisor", "lahf_lm", "xsaveopt", "vnmi", "ept", "fsgsbase", "tsc_adjust", "smep", "erms"]
[filesystem]
[/dev/vda1]
[kb_size]= 30830588
[kb_used]= 5113820
[kb_available]= 24127624
[percent_used]= 18%
[mount]= /
[total_inodes]= 1966080
[inodes_used]= 251559
[inodes_available]= 1714521
[inodes_percent_used]= 13%
[fs_type]= ext4
[mount_options]= ["rw", "errors=remount-ro"]
[uuid]= 535f66ee-14e8-4b9f-9e27-cc7deb87f25d
[label]= DOROOT
[none]
[kb_size]= 102400
[kb_used]= 0
[kb_available]= 102400
[percent_used]= 0%
[mount]= /sys/fs/pstore
[total_inodes]= 127241
[inodes_used]= 2
[inodes_available]= 127239
[inodes_percent_used]= 1%
[fs_type]= pstore
[mount_options]= ["rw"]
[udev]
[kb_size]= 498144
[kb_used]= 8
[kb_available]= 498136
[percent_used]= 1%
[mount]= /dev
[total_inodes]= 124536
[inodes_used]= 393
[inodes_available]= 124143
[inodes_percent_used]= 1%
[fs_type]= devtmpfs
[mount_options]= ["rw", "mode=0755"]
[tmpfs]
[kb_size]= 101796
[kb_used]= 328
[kb_available]= 101468
[percent_used]= 1%
[mount]= /run
[total_inodes]= 127241
[inodes_used]= 311
[inodes_available]= 126930
[inodes_percent_used]= 1%
[fs_type]= tmpfs
[mount_options]= ["rw", "noexec", "nosuid", "size=10%", "mode=0755"]
[proc]
[mount]= /proc
[fs_type]= proc
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[sysfs]
[mount]= /sys
[fs_type]= sysfs
[mount_options]= ["rw", "noexec", "nosuid", "nodev"]
[devpts]
[mount]= /dev/pts
[fs_type]= devpts
[mount_options]= ["rw", "noexec", "nosuid", "gid=5", "mode=0620"]
[systemd]
[mount]= /sys/fs/cgroup/systemd
[fs_type]= cgroup
[mount_options]= ["rw", "noexec", "nosuid", "nodev", "none", "name=systemd"]
[rootfs]
[mount]= /
[fs_type]= rootfs
[mount_options]= ["rw"]
[/dev/disk/by-label/DOROOT]
[mount]= /
[fs_type]= ext4
[mount_options]= ["rw", "relatime", "errors=remount-ro", "data=ordered"]
[ip6address]= fe80::601:1cff:fee1:c701
[lsb]
[id]= Ubuntu
[release]= 14.04
[codename]= trusty
[description]= Ubuntu 14.04.3 LTS
[kernel]
[name]= Linux
[release]= 3.13.0-27-generic
[version]= #50-Ubuntu SMP Thu May 15 18:06:16 UTC 2014
[machine]= x86_64
[os]= GNU/Linux
[modules]
[btrfs]
[size]= 835954
[refcount]= 0
[raid6_pq]
[size]= 97812
[refcount]= 1
[xor]
[size]= 21411
[refcount]= 1
[ufs]
[size]= 74890
[refcount]= 0
[msdos]
[size]= 17332
[refcount]= 0
[xfs]
[size]= 912173
[refcount]= 0
[libcrc32c]
[size]= 12644
[refcount]= 2
[kvm_intel]
[size]= 143060
[refcount]= 0
[kvm]
[size]= 451511
[refcount]= 1
[crct10dif_pclmul]
[size]= 14289
[refcount]= 0
[crc32_pclmul]
[size]= 13113
[refcount]= 0
[ghash_clmulni_intel]
[size]= 13216
[refcount]= 0
[aesni_intel]
[size]= 55624
[refcount]= 0
[aes_x86_64]
[size]= 17131
[refcount]= 1
[lrw]
[size]= 13286
[refcount]= 1
[gf128mul]
[size]= 14951
[refcount]= 1
[glue_helper]
[size]= 13990
[refcount]= 1
[ablk_helper]
[size]= 13597
[refcount]= 1
[cryptd]
[size]= 20359
[refcount]= 3
[serio_raw]
[size]= 13462
[refcount]= 0
[psmouse]
[size]= 102222
[refcount]= 0
[floppy]
[size]= 69418
[refcount]= 0
[os]= linux
[os_version]= 3.13.0-27-generic
[platform]= ubuntu
[platform_version]= 14.04
[platform_family]= debian
[memory]
[swap]
[cached]= 0kB
[total]= 0kB
[free]= 0kB
[total]= 1017928kB
[free]= 71280kB
[buffers]= 158700kB
[cached]= 385624kB
[active]= 546960kB
[inactive]= 282648kB
[dirty]= 0kB
[writeback]= 0kB
[anon_pages]= 285308kB
[mapped]= 10212kB
[slab]= 98100kB
[slab_reclaimable]= 66424kB
[slab_unreclaim]= 31676kB
[page_tables]= 3968kB
[nfs_unstable]= 0kB
[bounce]= 0kB
[commit_limit]= 508964kB
[committed_as]= 630864kB
[vmalloc_total]= 34359738367kB
[vmalloc_used]= 4108kB
[vmalloc_chunk]= 34359704688kB
[virtualization]
[systems]
[kvm]= host
[system]= kvm
[role]= host
[languages]
[ruby]
[platform]= x86_64-linux
[version]= 2.0.0
[release_date]= 2013-11-22
[target]= x86_64-unknown-linux-gnu
[target_cpu]= x86_64
[target_vendor]= unknown
[target_os]= linux
[host]= x86_64-unknown-linux-gnu
[host_cpu]= x86_64
[host_os]= linux-gnu
[host_vendor]= unknown
[bin_dir]= /usr/local/rvm/rubies/ruby-2.0.0-p353/bin
[ruby_bin]= /usr/local/rvm/rubies/ruby-2.0.0-p353/bin/ruby
[gems_dir]= /usr/local/rvm/gems/ruby-2.0.0-p353
[gem_bin]= /usr/local/rvm/rubies/ruby-2.0.0-p353/bin/gem
[nodejs]
[version]= 0.10.37
[perl]
[version]= 5.18.2
[archname]= x86_64-linux-gnu-thread-multi
[c]
[gcc]
[version]= 4.8.4
[description]= gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04)
[java]
[version]= 1.7.0_79
[hotspot]
[name]= OpenJDK 64-Bit Server VM
[build]= 24.79-b02, mixed mode
[python]
[version]= 2.7.6
[builddate]= Jun 22 2015, 17:58:13
[block_device]
[vda]
[size]= 62914560
[removable]= 0
[vendor]= 0x1af4
[rotational]= 1
[ram0]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram1]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram2]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram3]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram4]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram5]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram6]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram7]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram8]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram9]
[size]= 131072
[removable]= 0
[rotational]= 1
[loop0]
[size]= 0
[removable]= 0
[rotational]= 1
[loop1]
[size]= 0
[removable]= 0
[rotational]= 1
[loop2]
[size]= 0
[removable]= 0
[rotational]= 1
[loop3]
[size]= 0
[removable]= 0
[rotational]= 1
[loop4]
[size]= 0
[removable]= 0
[rotational]= 1
[loop5]
[size]= 0
[removable]= 0
[rotational]= 1
[loop6]
[size]= 0
[removable]= 0
[rotational]= 1
[loop7]
[size]= 0
[removable]= 0
[rotational]= 1
[ram10]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram11]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram12]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram13]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram14]
[size]= 131072
[removable]= 0
[rotational]= 1
[ram15]
[size]= 131072
[removable]= 0
[rotational]= 1
[root_group]= root
[dmi]
[dmidecode_version]= 2.12
[smbios_version]= 2.4
[structures]
[count]= 10
[size]= 263
[bios]
[all_records]= [{"record_id"=>"0x0000", "size"=>"0", "application_identifier"=>"BIOS Information", "Vendor"=>"Bochs", "Version"=>"Bochs", "Release Date"=>"01/01/2011", "Address"=>"0xE8000", "Runtime Size"=>"96 kB", "ROM Size"=>"64 kB", "Characteristics"=>{"BIOS characteristics not supported"=>nil, "Targeted content distribution is supported"=>nil}, "BIOS Revision"=>"1.0"}]
[vendor]= Bochs
[version]= Bochs
[release_date]= 01/01/2011
[address]= 0xE8000
[runtime_size]= 96 kB
[rom_size]= 64 kB
[bios_revision]= 1.0
[system]
[all_records]= [{"record_id"=>"0x0100", "size"=>"1", "application_identifier"=>"System Information", "Manufacturer"=>"Bochs", "Product Name"=>"Bochs", "Version"=>"Not Specified", "Serial Number"=>"Not Specified", "UUID"=>"03D56DD5-9C6A-44DB-821D-40506A8C018E", "Wake-up Type"=>"Power Switch", "SKU Number"=>"Not Specified", "Family"=>"Not Specified"}]
[manufacturer]= Bochs
[product_name]= Bochs
[version]= Not Specified
[serial_number]= Not Specified
[uuid]= 03D56DD5-9C6A-44DB-821D-40506A8C018E
[wake_up_type]= Power Switch
[sku_number]= Not Specified
[family]= Not Specified
[chassis]
[all_records]= [{"record_id"=>"0x0300", "size"=>"3", "application_identifier"=>"Chassis Information", "Manufacturer"=>"Bochs", "Type"=>"Other", "Lock"=>"Not Present", "Version"=>"Not Specified", "Serial Number"=>"Not Specified", "Asset Tag"=>"Not Specified", "Boot-up State"=>"Safe", "Power Supply State"=>"Safe", "Thermal State"=>"Safe", "Security Status"=>"Unknown", "OEM Information"=>"0x00000000", "Height"=>"Unspecified", "Number Of Power Cords"=>"Unspecified"}]
[manufacturer]= Bochs
[type]= Other
[lock]= Not Present
[version]= Not Specified
[serial_number]= Not Specified
[asset_tag]= Not Specified
[boot_up_state]= Safe
[power_supply_state]= Safe
[thermal_state]= Safe
[security_status]= Unknown
[oem_information]= 0x00000000
[height]= Unspecified
[number_of_power_cords]= Unspecified
[processor]
[all_records]= [{"record_id"=>"0x0401", "size"=>"4", "application_identifier"=>"Processor Information", "Socket Designation"=>"CPU 1", "Type"=>"Central Processor", "Family"=>"Other", "Manufacturer"=>"Bochs", "ID"=>"E4 06 03 00 FF FB 8B 0F", "Version"=>"Not Specified", "Voltage"=>"Unknown", "External Clock"=>"Unknown", "Max Speed"=>"2000 MHz", "Current Speed"=>"2000 MHz", "Status"=>"Populated, Enabled", "Upgrade"=>"Other", "L1 Cache Handle"=>"Not Provided", "L2 Cache Handle"=>"Not Provided", "L3 Cache Handle"=>"Not Provided"}]
[socket_designation]= CPU 1
[type]= Central Processor
[family]= Other
[manufacturer]= Bochs
[id]= E4 06 03 00 FF FB 8B 0F
[version]= Not Specified
[voltage]= Unknown
[external_clock]= Unknown
[max_speed]= 2000 MHz
[current_speed]= 2000 MHz
[status]= Populated, Enabled
[upgrade]= Other
[l1_cache_handle]= Not Provided
[l2_cache_handle]= Not Provided
[l3_cache_handle]= Not Provided
[etc]
[passwd]
[root]
[dir]= /root
[shell]= /bin/bash
[gecos]= root
[daemon]
[dir]= /usr/sbin
[shell]= /usr/sbin/nologin
[gecos]= daemon
[bin]
[dir]= /bin
[shell]= /usr/sbin/nologin
[gecos]= bin
[sys]
[dir]= /dev
[shell]= /usr/sbin/nologin
[gecos]= sys
[sync]
[dir]= /bin
[shell]= /bin/sync
[gecos]= sync
[games]
[dir]= /usr/games
[shell]= /usr/sbin/nologin
[gecos]= games
[man]
[dir]= /var/cache/man
[shell]= /usr/sbin/nologin
[gecos]= man
[lp]
[dir]= /var/spool/lpd
[shell]= /usr/sbin/nologin
[gecos]= lp
[mail]
[dir]= /var/mail
[shell]= /usr/sbin/nologin
[gecos]= mail
[news]
[dir]= /var/spool/news
[shell]= /usr/sbin/nologin
[gecos]= news
[uucp]
[dir]= /var/spool/uucp
[shell]= /usr/sbin/nologin
[gecos]= uucp
[proxy]
[dir]= /bin
[shell]= /usr/sbin/nologin
[gecos]= proxy
[www-data]
[dir]= /var/www
[shell]= /usr/sbin/nologin
[gecos]= www-data
[backup]
[dir]= /var/backups
[shell]= /usr/sbin/nologin
[gecos]= backup
[list]
[dir]= /var/list
[shell]= /usr/sbin/nologin
[gecos]= Mailing List Manager
[irc]
[dir]= /var/run/ircd
[shell]= /usr/sbin/nologin
[gecos]= ircd
[gnats]
[dir]= /var/lib/gnats
[shell]= /usr/sbin/nologin
[gecos]= Gnats Bug-Reporting System (admin)
[nobody]
[dir]= /nonexistent
[shell]= /usr/sbin/nologin
[gecos]= nobody
[libuuid]
[dir]= /var/lib/libuuid
[shell]= /bin/sh
[gecos]=
[syslog]
[dir]= /home/syslog
[shell]= /bin/false
[gecos]=
[messagebus]
[dir]= /var/run/dbus
[shell]= /bin/false
[gecos]=
[sshd]
[dir]= /var/run/sshd
[shell]= /usr/sbin/nologin
[gecos]=
[avahi]
[dir]= /var/run/avahi-daemon
[shell]= /bin/false
[gecos]= Avahi mDNS daemon,,,
[mysql]
[dir]= /nonexistent
[shell]= /bin/false
[gecos]= MySQL Server,,,
[rails]
[dir]= /home/rails
[shell]= /bin/sh
[gecos]=
[postfix]
[dir]= /var/spool/postfix
[shell]= /bin/false
[gecos]=
[colord]
[dir]= /var/lib/colord
[shell]= /bin/false
[gecos]= colord colour management daemon,,,
[mosquitto]
[dir]= /var/lib/mosquitto
[shell]= /usr/sbin/nologin
[gecos]=
[group]
[root]
[members]= []
[daemon]
[members]= []
[bin]
[members]= []
[sys]
[members]= []
[adm]
[members]= ["syslog"]
[tty]
[members]= []
[disk]
[members]= []
[lp]
[members]= []
[mail]
[members]= []
[news]
[members]= []
[uucp]
[members]= []
[man]
[members]= []
[proxy]
[members]= []
[kmem]
[members]= []
[dialout]
[members]= []
[fax]
[members]= []
[voice]
[members]= []
[cdrom]
[members]= []
[floppy]
[members]= []
[tape]
[members]= []
[sudo]
[members]= []
[audio]
[members]= []
[dip]
[members]= []
[www-data]
[members]= []
[backup]
[members]= []
[operator]
[members]= []
[list]
[members]= []
[irc]
[members]= []
[src]
[members]= []
[gnats]
[members]= []
[shadow]
[members]= []
[utmp]
[members]= []
[video]
[members]= []
[sasl]
[members]= []
[plugdev]
[members]= []
[staff]
[members]= []
[games]
[members]= []
[users]
[members]= []
[nogroup]
[members]= []
[libuuid]
[members]= []
[crontab]
[members]= []
[syslog]
[members]= []
[messagebus]
[members]= []
[ssh]
[members]= []
[ssl-cert]
[members]= []
[avahi]
[members]= []
[netdev]
[members]= []
[mysql]
[members]= []
[rvm]
[members]= []
[rails]
[members]= []
[postfix]
[members]= []
[postdrop]
[members]= []
[scanner]
[members]= []
[colord]
[members]= []
[fuse]
[members]= []
[current_user]= root
[digital_ocean]
[networks]
[v4]= [{"ip_address"=>"107.170.211.69", "type"=>"public", "netmask"=>"255.255.240.0"}]
[v6]= [{"ip_address"=>"fe80:0000:0000:0000:0601:1cff:fee1:c701", "type"=>"public", "cidr"=>128}]
[cloud]
[public_ips]= [{"ip_address"=>"107.170.211.69", "type"=>"public", "netmask"=>"255.255.240.0"}, {"ip_address"=>"fe80:0000:0000:0000:0601:1cff:fee1:c701", "type"=>"public", "cidr"=>128}]
[private_ips]= []
[public_ipv4]
[ip_address]= 107.170.211.69
[type]= public
[netmask]= 255.255.240.0
[public_ipv6]
[ip_address]= fe80:0000:0000:0000:0601:1cff:fee1:c701
[type]= public
[provider]= digital_ocean
[cloud_v2]
[public_ipv4_addrs]= ["107.170.211.69"]
[public_ipv6_addrs]= ["fe80::601:1cff:fee1:c701"]
[provider]= digital_ocean
[public_ipv4]= 107.170.211.69
[public_ipv6]= fe80::601:1cff:fee1:c701
[hostname]= server1
[machinename]= server1
[fqdn]= server1
[chef_packages]
[chef]
[version]= 12.4.1
[chef_root]= /usr/local/rvm/gems/ruby-2.0.0-p353/gems/chef-12.4.1/lib
[ohai]
[version]= 8.5.1
[ohai_root]= /usr/local/rvm/gems/ruby-2.0.0-p353/gems/ohai-8.5.1/lib/ohai
[init_package]= init
[recipes]= ["ohai::default"]
[expanded_run_list]= ["ohai::default"]
[roles]= []
[cookbooks]
[dummy]
[version]= 0.1.0
[ohai]
[version]= 0.1.0