chef 12.0.0.alpha.1-x86-mingw32 → 12.0.0.alpha.2-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (180) hide show
  1. checksums.yaml +4 -4
  2. data/lib/chef/application.rb +8 -1
  3. data/lib/chef/application/apply.rb +4 -0
  4. data/lib/chef/application/client.rb +7 -7
  5. data/lib/chef/application/solo.rb +21 -13
  6. data/lib/chef/chef_fs/chef_fs_data_store.rb +60 -6
  7. data/lib/chef/chef_fs/config.rb +78 -4
  8. data/lib/chef/chef_fs/data_handler/acl_data_handler.rb +2 -2
  9. data/lib/chef/chef_fs/data_handler/client_data_handler.rb +1 -1
  10. data/lib/chef/chef_fs/data_handler/container_data_handler.rb +1 -1
  11. data/lib/chef/chef_fs/data_handler/cookbook_data_handler.rb +1 -1
  12. data/lib/chef/chef_fs/data_handler/data_bag_item_data_handler.rb +1 -1
  13. data/lib/chef/chef_fs/data_handler/data_handler_base.rb +76 -2
  14. data/lib/chef/chef_fs/data_handler/environment_data_handler.rb +1 -1
  15. data/lib/chef/chef_fs/data_handler/group_data_handler.rb +1 -1
  16. data/lib/chef/chef_fs/data_handler/node_data_handler.rb +1 -1
  17. data/lib/chef/chef_fs/data_handler/organization_data_handler.rb +30 -0
  18. data/lib/chef/chef_fs/data_handler/organization_invites_data_handler.rb +17 -0
  19. data/lib/chef/chef_fs/data_handler/organization_members_data_handler.rb +17 -0
  20. data/lib/chef/chef_fs/data_handler/role_data_handler.rb +1 -1
  21. data/lib/chef/chef_fs/data_handler/user_data_handler.rb +2 -1
  22. data/lib/chef/chef_fs/file_system.rb +0 -1
  23. data/lib/chef/chef_fs/file_system/acl_entry.rb +1 -1
  24. data/lib/chef/chef_fs/file_system/chef_repository_file_system_cookbook_dir.rb +1 -1
  25. data/lib/chef/chef_fs/file_system/chef_repository_file_system_entry.rb +5 -1
  26. data/lib/chef/chef_fs/file_system/chef_repository_file_system_root_dir.rb +73 -13
  27. data/lib/chef/chef_fs/file_system/chef_server_root_dir.rb +44 -5
  28. data/lib/chef/chef_fs/file_system/cookbook_dir.rb +1 -1
  29. data/lib/chef/chef_fs/file_system/cookbooks_dir.rb +3 -3
  30. data/lib/chef/chef_fs/file_system/org_entry.rb +34 -0
  31. data/lib/chef/chef_fs/file_system/organization_invites_entry.rb +58 -0
  32. data/lib/chef/chef_fs/file_system/organization_members_entry.rb +57 -0
  33. data/lib/chef/chef_fs/file_system/rest_list_entry.rb +13 -4
  34. data/lib/chef/chef_fs/knife.rb +1 -1
  35. data/lib/chef/client.rb +8 -2
  36. data/lib/chef/config.rb +75 -57
  37. data/lib/chef/config_fetcher.rb +6 -21
  38. data/lib/chef/dsl/data_query.rb +48 -3
  39. data/lib/chef/dsl/platform_introspection.rb +42 -0
  40. data/lib/chef/dsl/reboot_pending.rb +6 -3
  41. data/lib/chef/encrypted_data_bag_item.rb +1 -1
  42. data/lib/chef/encrypted_data_bag_item/encryptor.rb +12 -0
  43. data/lib/chef/exceptions.rb +2 -0
  44. data/lib/chef/http/basic_client.rb +14 -0
  45. data/lib/chef/http/json_output.rb +7 -2
  46. data/lib/chef/knife.rb +36 -121
  47. data/lib/chef/knife/bootstrap.rb +68 -54
  48. data/lib/chef/knife/bootstrap/archlinux-gems.erb +6 -1
  49. data/lib/chef/knife/bootstrap/chef-aix.erb +5 -0
  50. data/lib/chef/knife/bootstrap/chef-full.erb +5 -1
  51. data/lib/chef/knife/core/bootstrap_context.rb +70 -29
  52. data/lib/chef/knife/search.rb +56 -12
  53. data/lib/chef/knife/serve.rb +1 -1
  54. data/lib/chef/local_mode.rb +10 -4
  55. data/lib/chef/mixin/deep_merge.rb +6 -3
  56. data/lib/chef/mixin/shell_out.rb +33 -17
  57. data/lib/chef/null_logger.rb +72 -0
  58. data/lib/chef/platform.rb +2 -1
  59. data/lib/chef/platform/provider_mapping.rb +1 -1
  60. data/lib/chef/platform/rebooter.rb +54 -0
  61. data/lib/chef/provider/ifconfig.rb +15 -16
  62. data/lib/chef/provider/link.rb +1 -1
  63. data/lib/chef/provider/mount/mount.rb +1 -1
  64. data/lib/chef/provider/mount/solaris.rb +102 -64
  65. data/lib/chef/provider/package/aix.rb +4 -12
  66. data/lib/chef/provider/package/ips.rb +8 -12
  67. data/lib/chef/provider/package/macports.rb +4 -12
  68. data/lib/chef/provider/package/pacman.rb +2 -6
  69. data/lib/chef/provider/package/portage.rb +2 -6
  70. data/lib/chef/provider/package/rpm.rb +4 -12
  71. data/lib/chef/provider/package/solaris.rb +4 -12
  72. data/lib/chef/provider/reboot.rb +69 -0
  73. data/lib/chef/provider/service/debian.rb +10 -10
  74. data/lib/chef/provider/service/freebsd.rb +89 -73
  75. data/lib/chef/provider/service/gentoo.rb +2 -2
  76. data/lib/chef/provider/service/init.rb +6 -4
  77. data/lib/chef/provider/service/insserv.rb +3 -3
  78. data/lib/chef/provider/service/macosx.rb +2 -2
  79. data/lib/chef/provider/service/simple.rb +6 -4
  80. data/lib/chef/provider/service/solaris.rb +1 -1
  81. data/lib/chef/provider/service/systemd.rb +9 -9
  82. data/lib/chef/provider/service/upstart.rb +6 -6
  83. data/lib/chef/provider/subversion.rb +6 -6
  84. data/lib/chef/provider/user/dscl.rb +32 -28
  85. data/lib/chef/provider/user/windows.rb +6 -6
  86. data/lib/chef/provider/whyrun_safe_ruby_block.rb +1 -1
  87. data/lib/chef/providers.rb +1 -0
  88. data/lib/chef/recipe.rb +0 -1
  89. data/lib/chef/resource.rb +3 -5
  90. data/lib/chef/resource/mount.rb +9 -0
  91. data/lib/chef/resource/reboot.rb +48 -0
  92. data/lib/chef/resources.rb +1 -0
  93. data/lib/chef/run_context.rb +25 -0
  94. data/lib/chef/search/query.rb +122 -14
  95. data/lib/chef/util/path_helper.rb +54 -6
  96. data/lib/chef/util/windows/net_user.rb +4 -1
  97. data/lib/chef/version.rb +1 -1
  98. data/lib/chef/win32/api/file.rb +1 -5
  99. data/lib/chef/win32/api/net.rb +1 -0
  100. data/lib/chef/workstation_config_loader.rb +177 -0
  101. data/spec/functional/http/simple_spec.rb +57 -1
  102. data/spec/functional/mixin/shell_out_spec.rb +2 -2
  103. data/spec/functional/provider/whyrun_safe_ruby_block_spec.rb +51 -0
  104. data/spec/functional/rebooter_spec.rb +105 -0
  105. data/spec/functional/resource/deploy_revision_spec.rb +0 -4
  106. data/spec/functional/resource/file_spec.rb +26 -3
  107. data/spec/functional/resource/group_spec.rb +5 -3
  108. data/spec/functional/resource/link_spec.rb +16 -16
  109. data/spec/functional/resource/reboot_spec.rb +103 -0
  110. data/spec/integration/client/client_spec.rb +4 -8
  111. data/spec/integration/client/ipv6_spec.rb +1 -1
  112. data/spec/integration/knife/cookbook_api_ipv6_spec.rb +3 -2
  113. data/spec/integration/knife/delete_spec.rb +39 -0
  114. data/spec/integration/knife/deps_spec.rb +30 -20
  115. data/spec/integration/knife/download_spec.rb +77 -1
  116. data/spec/integration/knife/list_spec.rb +221 -0
  117. data/spec/integration/knife/raw_spec.rb +1 -1
  118. data/spec/integration/knife/show_spec.rb +2 -2
  119. data/spec/integration/knife/upload_spec.rb +154 -1
  120. data/spec/support/pedant/run_pedant.rb +0 -1
  121. data/spec/support/shared/functional/http.rb +8 -1
  122. data/spec/support/shared/integration/integration_helper.rb +11 -19
  123. data/spec/support/shared/unit/platform_introspector.rb +22 -0
  124. data/spec/unit/application/apply.rb +11 -1
  125. data/spec/unit/application/solo_spec.rb +19 -3
  126. data/spec/unit/chef_fs/config_spec.rb +58 -0
  127. data/spec/unit/config_fetcher_spec.rb +1 -3
  128. data/spec/unit/config_spec.rb +247 -220
  129. data/spec/unit/dsl/data_query_spec.rb +165 -23
  130. data/spec/unit/dsl/reboot_pending_spec.rb +1 -7
  131. data/spec/unit/encrypted_data_bag_item_spec.rb +1 -1
  132. data/spec/unit/knife/bootstrap_spec.rb +354 -182
  133. data/spec/unit/knife/core/bootstrap_context_spec.rb +67 -30
  134. data/spec/unit/knife_spec.rb +3 -30
  135. data/spec/unit/mixin/deep_merge_spec.rb +14 -0
  136. data/spec/unit/mixin/shell_out_spec.rb +134 -64
  137. data/spec/unit/provider/ifconfig/debian_spec.rb +19 -9
  138. data/spec/unit/provider/ifconfig/redhat_spec.rb +16 -14
  139. data/spec/unit/provider/ifconfig_spec.rb +3 -3
  140. data/spec/unit/provider/link_spec.rb +5 -5
  141. data/spec/unit/provider/mount/mount_spec.rb +10 -1
  142. data/spec/unit/provider/mount/solaris_spec.rb +185 -11
  143. data/spec/unit/provider/package/aix_spec.rb +5 -17
  144. data/spec/unit/provider/package/ips_spec.rb +8 -21
  145. data/spec/unit/provider/package/macports_spec.rb +12 -12
  146. data/spec/unit/provider/package/pacman_spec.rb +4 -12
  147. data/spec/unit/provider/package/portage_spec.rb +5 -15
  148. data/spec/unit/provider/package/rpm_spec.rb +7 -22
  149. data/spec/unit/provider/package/solaris_spec.rb +5 -16
  150. data/spec/unit/provider/service/arch_service_spec.rb +8 -14
  151. data/spec/unit/provider/service/debian_service_spec.rb +1 -1
  152. data/spec/unit/provider/service/freebsd_service_spec.rb +457 -225
  153. data/spec/unit/provider/service/gentoo_service_spec.rb +2 -2
  154. data/spec/unit/provider/service/init_service_spec.rb +10 -10
  155. data/spec/unit/provider/service/insserv_service_spec.rb +3 -4
  156. data/spec/unit/provider/service/invokercd_service_spec.rb +8 -9
  157. data/spec/unit/provider/service/macosx_spec.rb +5 -5
  158. data/spec/unit/provider/service/simple_service_spec.rb +4 -6
  159. data/spec/unit/provider/service/solaris_smf_service_spec.rb +1 -3
  160. data/spec/unit/provider/service/systemd_service_spec.rb +20 -20
  161. data/spec/unit/provider/service/upstart_service_spec.rb +15 -17
  162. data/spec/unit/provider/subversion_spec.rb +5 -6
  163. data/spec/unit/provider/user/dscl_spec.rb +2 -1
  164. data/spec/unit/provider/user/windows_spec.rb +7 -0
  165. data/spec/unit/provider/whyrun_safe_ruby_block_spec.rb +2 -2
  166. data/spec/unit/resource/mount_spec.rb +9 -0
  167. data/spec/unit/resource_spec.rb +0 -4
  168. data/spec/unit/rest_spec.rb +1 -1
  169. data/spec/unit/run_context_spec.rb +15 -0
  170. data/spec/unit/search/query_spec.rb +196 -40
  171. data/spec/unit/util/path_helper_spec.rb +111 -28
  172. data/spec/unit/workstation_config_loader_spec.rb +283 -0
  173. metadata +36 -20
  174. data/lib/chef/knife/bootstrap/centos5-gems.erb +0 -62
  175. data/lib/chef/knife/bootstrap/fedora13-gems.erb +0 -44
  176. data/lib/chef/knife/bootstrap/ubuntu10.04-apt.erb +0 -53
  177. data/lib/chef/knife/bootstrap/ubuntu10.04-gems.erb +0 -48
  178. data/lib/chef/knife/bootstrap/ubuntu12.04-gems.erb +0 -46
  179. data/spec/support/shared/integration/chef_zero_support.rb +0 -130
  180. data/spec/unit/knife/config_file_selection_spec.rb +0 -135
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef
3
3
  version: !ruby/object:Gem::Version
4
- version: 12.0.0.alpha.1
4
+ version: 12.0.0.alpha.2
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Adam Jacob
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-21 00:00:00.000000000 Z
11
+ date: 2014-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mixlib-config
@@ -70,30 +70,36 @@ dependencies:
70
70
  name: mixlib-shellout
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: '1.4'
75
+ version: 2.0.0.rc.0
76
+ - - "<"
77
+ - !ruby/object:Gem::Version
78
+ version: '3.0'
76
79
  type: :runtime
77
80
  prerelease: false
78
81
  version_requirements: !ruby/object:Gem::Requirement
79
82
  requirements:
80
- - - "~>"
83
+ - - ">="
81
84
  - !ruby/object:Gem::Version
82
- version: '1.4'
85
+ version: 2.0.0.rc.0
86
+ - - "<"
87
+ - !ruby/object:Gem::Version
88
+ version: '3.0'
83
89
  - !ruby/object:Gem::Dependency
84
90
  name: ohai
85
91
  requirement: !ruby/object:Gem::Requirement
86
92
  requirements:
87
- - - "~>"
93
+ - - ">="
88
94
  - !ruby/object:Gem::Version
89
- version: '7.2'
95
+ version: 7.6.0.rc.0
90
96
  type: :runtime
91
97
  prerelease: false
92
98
  version_requirements: !ruby/object:Gem::Requirement
93
99
  requirements:
94
- - - "~>"
100
+ - - ">="
95
101
  - !ruby/object:Gem::Version
96
- version: '7.2'
102
+ version: 7.6.0.rc.0
97
103
  - !ruby/object:Gem::Dependency
98
104
  name: ffi-yajl
99
105
  requirement: !ruby/object:Gem::Requirement
@@ -202,14 +208,14 @@ dependencies:
202
208
  requirements:
203
209
  - - "~>"
204
210
  - !ruby/object:Gem::Version
205
- version: '2.2'
211
+ version: '3.1'
206
212
  type: :runtime
207
213
  prerelease: false
208
214
  version_requirements: !ruby/object:Gem::Requirement
209
215
  requirements:
210
216
  - - "~>"
211
217
  - !ruby/object:Gem::Version
212
- version: '2.2'
218
+ version: '3.1'
213
219
  - !ruby/object:Gem::Dependency
214
220
  name: pry
215
221
  requirement: !ruby/object:Gem::Requirement
@@ -733,6 +739,9 @@ files:
733
739
  - lib/chef/chef_fs/data_handler/environment_data_handler.rb
734
740
  - lib/chef/chef_fs/data_handler/group_data_handler.rb
735
741
  - lib/chef/chef_fs/data_handler/node_data_handler.rb
742
+ - lib/chef/chef_fs/data_handler/organization_data_handler.rb
743
+ - lib/chef/chef_fs/data_handler/organization_invites_data_handler.rb
744
+ - lib/chef/chef_fs/data_handler/organization_members_data_handler.rb
736
745
  - lib/chef/chef_fs/data_handler/role_data_handler.rb
737
746
  - lib/chef/chef_fs/data_handler/user_data_handler.rb
738
747
  - lib/chef/chef_fs/file_pattern.rb
@@ -774,6 +783,9 @@ files:
774
783
  - lib/chef/chef_fs/file_system/not_found_error.rb
775
784
  - lib/chef/chef_fs/file_system/operation_failed_error.rb
776
785
  - lib/chef/chef_fs/file_system/operation_not_allowed_error.rb
786
+ - lib/chef/chef_fs/file_system/org_entry.rb
787
+ - lib/chef/chef_fs/file_system/organization_invites_entry.rb
788
+ - lib/chef/chef_fs/file_system/organization_members_entry.rb
777
789
  - lib/chef/chef_fs/file_system/rest_list_dir.rb
778
790
  - lib/chef/chef_fs/file_system/rest_list_entry.rb
779
791
  - lib/chef/chef_fs/knife.rb
@@ -880,13 +892,8 @@ files:
880
892
  - lib/chef/knife/bootstrap.rb
881
893
  - lib/chef/knife/bootstrap/README.md
882
894
  - lib/chef/knife/bootstrap/archlinux-gems.erb
883
- - lib/chef/knife/bootstrap/centos5-gems.erb
884
895
  - lib/chef/knife/bootstrap/chef-aix.erb
885
896
  - lib/chef/knife/bootstrap/chef-full.erb
886
- - lib/chef/knife/bootstrap/fedora13-gems.erb
887
- - lib/chef/knife/bootstrap/ubuntu10.04-apt.erb
888
- - lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
889
- - lib/chef/knife/bootstrap/ubuntu12.04-gems.erb
890
897
  - lib/chef/knife/client_bulk_delete.rb
891
898
  - lib/chef/knife/client_create.rb
892
899
  - lib/chef/knife/client_delete.rb
@@ -1030,9 +1037,11 @@ files:
1030
1037
  - lib/chef/node/attribute.rb
1031
1038
  - lib/chef/node/attribute_collections.rb
1032
1039
  - lib/chef/node/immutable_collections.rb
1040
+ - lib/chef/null_logger.rb
1033
1041
  - lib/chef/platform.rb
1034
1042
  - lib/chef/platform/provider_mapping.rb
1035
1043
  - lib/chef/platform/query_helpers.rb
1044
+ - lib/chef/platform/rebooter.rb
1036
1045
  - lib/chef/policy_builder.rb
1037
1046
  - lib/chef/policy_builder/expand_node_object.rb
1038
1047
  - lib/chef/policy_builder/policyfile.rb
@@ -1105,6 +1114,7 @@ files:
1105
1114
  - lib/chef/provider/package/yum.rb
1106
1115
  - lib/chef/provider/package/zypper.rb
1107
1116
  - lib/chef/provider/powershell_script.rb
1117
+ - lib/chef/provider/reboot.rb
1108
1118
  - lib/chef/provider/registry_key.rb
1109
1119
  - lib/chef/provider/remote_directory.rb
1110
1120
  - lib/chef/provider/remote_file.rb
@@ -1192,6 +1202,7 @@ files:
1192
1202
  - lib/chef/resource/portage_package.rb
1193
1203
  - lib/chef/resource/powershell_script.rb
1194
1204
  - lib/chef/resource/python.rb
1205
+ - lib/chef/resource/reboot.rb
1195
1206
  - lib/chef/resource/registry_key.rb
1196
1207
  - lib/chef/resource/remote_directory.rb
1197
1208
  - lib/chef/resource/remote_file.rb
@@ -1291,6 +1302,7 @@ files:
1291
1302
  - lib/chef/win32/security/token.rb
1292
1303
  - lib/chef/win32/unicode.rb
1293
1304
  - lib/chef/win32/version.rb
1305
+ - lib/chef/workstation_config_loader.rb
1294
1306
  - spec/data/apt/chef-integration-test-1.0/debian/changelog
1295
1307
  - spec/data/apt/chef-integration-test-1.0/debian/compat
1296
1308
  - spec/data/apt/chef-integration-test-1.0/debian/control
@@ -1578,6 +1590,8 @@ files:
1578
1590
  - spec/functional/knife/ssh_spec.rb
1579
1591
  - spec/functional/mixin/shell_out_spec.rb
1580
1592
  - spec/functional/provider/remote_file/cache_control_data_spec.rb
1593
+ - spec/functional/provider/whyrun_safe_ruby_block_spec.rb
1594
+ - spec/functional/rebooter_spec.rb
1581
1595
  - spec/functional/resource/base.rb
1582
1596
  - spec/functional/resource/batch_spec.rb
1583
1597
  - spec/functional/resource/bff_spec.rb
@@ -1595,6 +1609,7 @@ files:
1595
1609
  - spec/functional/resource/ohai_spec.rb
1596
1610
  - spec/functional/resource/package_spec.rb
1597
1611
  - spec/functional/resource/powershell_spec.rb
1612
+ - spec/functional/resource/reboot_spec.rb
1598
1613
  - spec/functional/resource/registry_spec.rb
1599
1614
  - spec/functional/resource/remote_directory_spec.rb
1600
1615
  - spec/functional/resource/remote_file_spec.rb
@@ -1666,7 +1681,6 @@ files:
1666
1681
  - spec/support/shared/functional/securable_resource_with_reporting.rb
1667
1682
  - spec/support/shared/functional/windows_script.rb
1668
1683
  - spec/support/shared/integration/app_server_support.rb
1669
- - spec/support/shared/integration/chef_zero_support.rb
1670
1684
  - spec/support/shared/integration/integration_helper.rb
1671
1685
  - spec/support/shared/integration/knife_support.rb
1672
1686
  - spec/support/shared/matchers.rb
@@ -1688,6 +1702,7 @@ files:
1688
1702
  - spec/unit/application/server_spec.rb
1689
1703
  - spec/unit/application/solo_spec.rb
1690
1704
  - spec/unit/application_spec.rb
1705
+ - spec/unit/chef_fs/config_spec.rb
1691
1706
  - spec/unit/chef_fs/diff_spec.rb
1692
1707
  - spec/unit/chef_fs/file_pattern_spec.rb
1693
1708
  - spec/unit/chef_fs/file_system/operation_failed_error_spec.rb
@@ -1754,7 +1769,6 @@ files:
1754
1769
  - spec/unit/knife/client_list_spec.rb
1755
1770
  - spec/unit/knife/client_reregister_spec.rb
1756
1771
  - spec/unit/knife/client_show_spec.rb
1757
- - spec/unit/knife/config_file_selection_spec.rb
1758
1772
  - spec/unit/knife/configure_client_spec.rb
1759
1773
  - spec/unit/knife/configure_spec.rb
1760
1774
  - spec/unit/knife/cookbook_bulk_delete_spec.rb
@@ -2043,9 +2057,11 @@ files:
2043
2057
  - spec/unit/version_constraint/platform_spec.rb
2044
2058
  - spec/unit/version_constraint_spec.rb
2045
2059
  - spec/unit/windows_service_spec.rb
2060
+ - spec/unit/workstation_config_loader_spec.rb
2046
2061
  - tasks/rspec.rb
2047
2062
  homepage: http://www.getchef.com
2048
- licenses: []
2063
+ licenses:
2064
+ - Apache-2.0
2049
2065
  metadata: {}
2050
2066
  post_install_message:
2051
2067
  rdoc_options: []
@@ -1,62 +0,0 @@
1
- bash -c '
2
- <%= "export http_proxy=\"#{knife_config[:bootstrap_proxy]}\"" if knife_config[:bootstrap_proxy] -%>
3
-
4
- if [ ! -f /usr/bin/chef-client ]; then
5
- tmp_dir=$(mktemp -d) || exit 1
6
- pushd "$tmp_dir"
7
-
8
- yum install -y wget
9
-
10
- wget <%= "--proxy=on " if knife_config[:bootstrap_proxy] %>http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
11
- rpm -Uvh epel-release-5-4.noarch.rpm
12
- wget <%= "--proxy=on " if knife_config[:bootstrap_proxy] %>http://rpm.aegisco.com/aegisco/rhel/aegisco-rhel.rpm
13
- rpm -Uvh aegisco-rhel.rpm
14
-
15
- yum install -y ruby ruby-devel gcc gcc-c++ automake autoconf make
16
-
17
- wget <%= "--proxy=on " if knife_config[:bootstrap_proxy] %>http://production.cf.rubygems.org/rubygems/rubygems-1.6.2.tgz -O - | tar zxf -
18
- (cd rubygems-1.6.2 && ruby setup.rb --no-format-executable)
19
-
20
- popd
21
- rm -r "$tmp_dir"
22
- fi
23
-
24
- gem update --system
25
- gem update
26
- gem install ohai --no-rdoc --no-ri --verbose
27
- gem install chef --no-rdoc --no-ri --verbose <%= bootstrap_version_string %>
28
-
29
- mkdir -p /etc/chef
30
-
31
- cat > /etc/chef/validation.pem <<'EOP'
32
- <%= validation_key %>
33
- EOP
34
- chmod 0600 /etc/chef/validation.pem
35
-
36
- <% if encrypted_data_bag_secret -%>
37
- cat > /etc/chef/encrypted_data_bag_secret <<'EOP'
38
- <%= encrypted_data_bag_secret %>
39
- EOP
40
- chmod 0600 /etc/chef/encrypted_data_bag_secret
41
- <% end -%>
42
-
43
- <%# Generate Ohai Hints -%>
44
- <% unless @chef_config[:knife][:hints].nil? || @chef_config[:knife][:hints].empty? -%>
45
- mkdir -p /etc/chef/ohai/hints
46
-
47
- <% @chef_config[:knife][:hints].each do |name, hash| -%>
48
- cat > /etc/chef/ohai/hints/<%= name %>.json <<'EOP'
49
- <%= hash.to_json %>
50
- EOP
51
- <% end -%>
52
- <% end -%>
53
-
54
- cat > /etc/chef/client.rb <<'EOP'
55
- <%= config_content %>
56
- EOP
57
-
58
- cat > /etc/chef/first-boot.json <<'EOP'
59
- <%= first_boot.to_json %>
60
- EOP
61
-
62
- <%= start_chef %>'
@@ -1,44 +0,0 @@
1
- bash -c '
2
- <%= "export http_proxy=\"#{knife_config[:bootstrap_proxy]}\"" if knife_config[:bootstrap_proxy] -%>
3
-
4
- yum install -y ruby ruby-devel gcc gcc-c++ automake autoconf rubygems make
5
-
6
- gem update --system
7
- gem update
8
- gem install ohai --no-rdoc --no-ri --verbose
9
- gem install chef --no-rdoc --no-ri --verbose <%= bootstrap_version_string %>
10
-
11
- mkdir -p /etc/chef
12
-
13
- cat > /etc/chef/validation.pem <<'EOP'
14
- <%= validation_key %>
15
- EOP
16
- chmod 0600 /etc/chef/validation.pem
17
-
18
- <% if encrypted_data_bag_secret -%>
19
- cat > /etc/chef/encrypted_data_bag_secret <<'EOP'
20
- <%= encrypted_data_bag_secret %>
21
- EOP
22
- chmod 0600 /etc/chef/encrypted_data_bag_secret
23
- <% end -%>
24
-
25
- <%# Generate Ohai Hints -%>
26
- <% unless @chef_config[:knife][:hints].nil? || @chef_config[:knife][:hints].empty? -%>
27
- mkdir -p /etc/chef/ohai/hints
28
-
29
- <% @chef_config[:knife][:hints].each do |name, hash| -%>
30
- cat > /etc/chef/ohai/hints/<%= name %>.json <<'EOP'
31
- <%= hash.to_json %>
32
- EOP
33
- <% end -%>
34
- <% end -%>
35
-
36
- cat > /etc/chef/client.rb <<'EOP'
37
- <%= config_content %>
38
- EOP
39
-
40
- cat > /etc/chef/first-boot.json <<'EOP'
41
- <%= first_boot.to_json %>
42
- EOP
43
-
44
- <%= start_chef %>'
@@ -1,53 +0,0 @@
1
- bash -c '
2
- <%= "export http_proxy=\"#{knife_config[:bootstrap_proxy]}\"" if knife_config[:bootstrap_proxy] -%>
3
-
4
- if [ ! -f /usr/bin/chef-client ]; then
5
- apt-get install -y wget
6
- echo "chef chef/chef_server_url string <%= @chef_config[:chef_server_url] %>" | debconf-set-selections
7
- [ -f /etc/apt/sources.list.d/opscode.list ] || echo "deb http://apt.opscode.com <%= chef_version.to_f == 0.10 ? "lucid-0.10" : "lucid" %> main" > /etc/apt/sources.list.d/opscode.list
8
- wget <%= "--proxy=on " if knife_config[:bootstrap_proxy] %>-O- http://apt.opscode.com/packages@opscode.com.gpg.key | apt-key add -
9
- fi
10
- apt-get update
11
- apt-get install -y chef
12
-
13
- cat > /etc/chef/validation.pem <<'EOP'
14
- <%= validation_key %>
15
- EOP
16
- chmod 0600 /etc/chef/validation.pem
17
-
18
- <% if encrypted_data_bag_secret -%>
19
- cat > /etc/chef/encrypted_data_bag_secret <<'EOP'
20
- <%= encrypted_data_bag_secret %>
21
- EOP
22
- chmod 0600 /etc/chef/encrypted_data_bag_secret
23
- <% end -%>
24
-
25
- <%# Generate Ohai Hints -%>
26
- <% unless @chef_config[:knife][:hints].nil? || @chef_config[:knife][:hints].empty? -%>
27
- mkdir -p /etc/chef/ohai/hints
28
-
29
- <% @chef_config[:knife][:hints].each do |name, hash| -%>
30
- cat > /etc/chef/ohai/hints/<%= name %>.json <<'EOP'
31
- <%= hash.to_json %>
32
- EOP
33
- <% end -%>
34
- <% end -%>
35
-
36
- <% unless @chef_config[:validation_client_name] == "chef-validator" -%>
37
- [ `grep -qx "validation_client_name \"<%= @chef_config[:validation_client_name] %>\"" /etc/chef/client.rb` ] || echo "validation_client_name \"<%= @chef_config[:validation_client_name] %>\"" >> /etc/chef/client.rb
38
- <% end -%>
39
-
40
- <% if @config[:chef_node_name] %>
41
- [ `grep -qx "node_name \"<%= @config[:chef_node_name] %>\"" /etc/chef/client.rb` ] || echo "node_name \"<%= @config[:chef_node_name] %>\"" >> /etc/chef/client.rb
42
- <% end -%>
43
-
44
- <% if knife_config[:bootstrap_proxy] %>
45
- echo 'http_proxy "knife_config[:bootstrap_proxy]"' >> /etc/chef/client.rb
46
- echo 'https_proxy "knife_config[:bootstrap_proxy]"' >> /etc/chef/client.rb
47
- <% end -%>
48
-
49
- cat > /etc/chef/first-boot.json <<'EOP'
50
- <%= first_boot.to_json %>
51
- EOP
52
-
53
- <%= start_chef %>'
@@ -1,48 +0,0 @@
1
- bash -c '
2
- <%= "export http_proxy=\"#{knife_config[:bootstrap_proxy]}\"" if knife_config[:bootstrap_proxy] -%>
3
-
4
- if [ ! -f /usr/bin/chef-client ]; then
5
- apt-get update
6
- apt-get install -y ruby ruby1.8-dev build-essential wget libruby-extras libruby1.8-extras
7
- wget <%= "--proxy=on " if knife_config[:bootstrap_proxy] %>http://production.cf.rubygems.org/rubygems/rubygems-1.6.2.tgz -O - | tar zxf -
8
- (cd rubygems-1.6.2 && ruby setup.rb --no-format-executable)
9
- fi
10
-
11
- gem update --no-rdoc --no-ri
12
- gem install ohai --no-rdoc --no-ri --verbose
13
- gem install chef --no-rdoc --no-ri --verbose <%= bootstrap_version_string %>
14
-
15
- mkdir -p /etc/chef
16
-
17
- cat > /etc/chef/validation.pem <<'EOP'
18
- <%= validation_key %>
19
- EOP
20
- chmod 0600 /etc/chef/validation.pem
21
-
22
- <% if encrypted_data_bag_secret -%>
23
- cat > /etc/chef/encrypted_data_bag_secret <<'EOP'
24
- <%= encrypted_data_bag_secret %>
25
- EOP
26
- chmod 0600 /etc/chef/encrypted_data_bag_secret
27
- <% end -%>
28
-
29
- <%# Generate Ohai Hints -%>
30
- <% unless @chef_config[:knife][:hints].nil? || @chef_config[:knife][:hints].empty? -%>
31
- mkdir -p /etc/chef/ohai/hints
32
-
33
- <% @chef_config[:knife][:hints].each do |name, hash| -%>
34
- cat > /etc/chef/ohai/hints/<%= name %>.json <<'EOP'
35
- <%= hash.to_json %>
36
- EOP
37
- <% end -%>
38
- <% end -%>
39
-
40
- cat > /etc/chef/client.rb <<'EOP'
41
- <%= config_content %>
42
- EOP
43
-
44
- cat > /etc/chef/first-boot.json <<'EOP'
45
- <%= first_boot.to_json %>
46
- EOP
47
-
48
- <%= start_chef %>'
@@ -1,46 +0,0 @@
1
- bash -c '
2
- <%= "export http_proxy=\"#{knife_config[:bootstrap_proxy]}\"" if knife_config[:bootstrap_proxy] -%>
3
-
4
- if [ ! -f /usr/bin/chef-client ]; then
5
- aptitude update
6
- aptitude install -y ruby ruby1.8-dev build-essential wget libruby1.8 rubygems
7
- fi
8
-
9
- gem update --no-rdoc --no-ri
10
- gem install ohai --no-rdoc --no-ri --verbose
11
- gem install chef --no-rdoc --no-ri --verbose <%= bootstrap_version_string %>
12
-
13
- mkdir -p /etc/chef
14
-
15
- cat > /etc/chef/validation.pem <<'EOP'
16
- <%= validation_key %>
17
- EOP
18
- chmod 0600 /etc/chef/validation.pem
19
-
20
- <% if encrypted_data_bag_secret -%>
21
- cat > /etc/chef/encrypted_data_bag_secret <<'EOP'
22
- <%= encrypted_data_bag_secret %>
23
- EOP
24
- chmod 0600 /etc/chef/encrypted_data_bag_secret
25
- <% end -%>
26
-
27
- <%# Generate Ohai Hints -%>
28
- <% unless @chef_config[:knife][:hints].nil? || @chef_config[:knife][:hints].empty? -%>
29
- mkdir -p /etc/chef/ohai/hints
30
-
31
- <% @chef_config[:knife][:hints].each do |name, hash| -%>
32
- cat > /etc/chef/ohai/hints/<%= name %>.json <<'EOP'
33
- <%= hash.to_json %>
34
- EOP
35
- <% end -%>
36
- <% end -%>
37
-
38
- cat > /etc/chef/client.rb <<'EOP'
39
- <%= config_content %>
40
- EOP
41
-
42
- cat > /etc/chef/first-boot.json <<'EOP'
43
- <%= first_boot.to_json %>
44
- EOP
45
-
46
- <%= start_chef %>'