Package not found. Please check the package name and try again.
microwave 11.400.2 → 11.400.3
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.
- data/bin/microwave +25 -0
- metadata +5 -3
data/bin/microwave
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
#
|
|
3
|
+
# ./chef-solo - Run the chef client, in stand-alone mode
|
|
4
|
+
#
|
|
5
|
+
# Author:: AJ Christensen (<aj@opscode.com>)
|
|
6
|
+
# Copyright:: Copyright (c) 2008 Opscode, Inc.
|
|
7
|
+
# License:: Apache License, Version 2.0
|
|
8
|
+
#
|
|
9
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
+
# you may not use this file except in compliance with the License.
|
|
11
|
+
# You may obtain a copy of the License at
|
|
12
|
+
#
|
|
13
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
14
|
+
#
|
|
15
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
16
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
17
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
18
|
+
# See the License for the specific language governing permissions and
|
|
19
|
+
# limitations under the License.
|
|
20
|
+
|
|
21
|
+
require 'rubygems'
|
|
22
|
+
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
|
|
23
|
+
require 'chef/application/solo'
|
|
24
|
+
|
|
25
|
+
Chef::Application::Solo.new.run
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: microwave
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 1537
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 11
|
|
8
8
|
- 400
|
|
9
|
-
-
|
|
10
|
-
version: 11.400.
|
|
9
|
+
- 3
|
|
10
|
+
version: 11.400.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Adam Jacob
|
|
@@ -363,6 +363,7 @@ executables:
|
|
|
363
363
|
- chef-shell
|
|
364
364
|
- shef
|
|
365
365
|
- chef-apply
|
|
366
|
+
- microwave
|
|
366
367
|
extensions: []
|
|
367
368
|
|
|
368
369
|
extra_rdoc_files:
|
|
@@ -895,6 +896,7 @@ files:
|
|
|
895
896
|
- bin/chef-shell
|
|
896
897
|
- bin/shef
|
|
897
898
|
- bin/chef-apply
|
|
899
|
+
- bin/microwave
|
|
898
900
|
has_rdoc: true
|
|
899
901
|
homepage: http://wiki.opscode.com/display/chef
|
|
900
902
|
licenses: []
|