summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorThom May <thom@chef.io>2016-01-14 14:08:03 +0000
committerThom May <thom@chef.io>2016-01-14 14:08:03 +0000
commit51cfbdc4d16739caac4d946fadbe678444aafe34 (patch)
tree56dfd8f1cd9fd933de27268b32402e955a43ac2b /bin
parent05064423057d4cf46f4713b81b08829cf6d20af6 (diff)
downloadchef-51cfbdc4d16739caac4d946fadbe678444aafe34.tar.gz
Use double quotes by default
This is an entirely mechanically generated (chefstyle -a) change, to go along with chef/chefstyle#5 . We should pick something and use it consistently, and my opinion is that double quotes are the appropriate thing.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/chef-apply4
-rwxr-xr-xbin/chef-client6
-rwxr-xr-xbin/chef-service-manager10
-rwxr-xr-xbin/chef-shell2
-rwxr-xr-xbin/chef-solo4
-rwxr-xr-xbin/chef-windows-service6
-rwxr-xr-xbin/knife4
7 files changed, 18 insertions, 18 deletions
diff --git a/bin/chef-apply b/bin/chef-apply
index c617129aa3..5d857167ae 100755
--- a/bin/chef-apply
+++ b/bin/chef-apply
@@ -18,8 +18,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-require 'rubygems'
+require "rubygems"
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
-require 'chef/application/apply'
+require "chef/application/apply"
Chef::Application::Apply.new.run
diff --git a/bin/chef-client b/bin/chef-client
index 5b2b058f91..6f4f4d8b04 100755
--- a/bin/chef-client
+++ b/bin/chef-client
@@ -18,9 +18,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-require 'rubygems'
+require "rubygems"
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
-require 'chef'
-require 'chef/application/client'
+require "chef"
+require "chef/application/client"
Chef::Application::Client.new.run
diff --git a/bin/chef-service-manager b/bin/chef-service-manager
index 43d9c8a933..9bdd244e1d 100755
--- a/bin/chef-service-manager
+++ b/bin/chef-service-manager
@@ -18,19 +18,19 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-require 'rubygems'
+require "rubygems"
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
-require 'chef'
-require 'chef/application/windows_service_manager'
+require "chef"
+require "chef/application/windows_service_manager"
if Chef::Platform.windows?
chef_client_service = {
:service_name => "chef-client",
:service_display_name => "Chef Client Service",
:service_description => "Runs Chef Client on regular, configurable intervals.",
- :service_file_path => File.expand_path('../chef-windows-service', $PROGRAM_NAME),
+ :service_file_path => File.expand_path("../chef-windows-service", $PROGRAM_NAME),
:delayed_start => true,
- :dependencies => ['Winmgmt'],
+ :dependencies => ["Winmgmt"],
}
Chef::Application::WindowsServiceManager.new(chef_client_service).run
else
diff --git a/bin/chef-shell b/bin/chef-shell
index f334635742..9cc7651c70 100755
--- a/bin/chef-shell
+++ b/bin/chef-shell
@@ -25,7 +25,7 @@ end
require "irb"
require "irb/completion"
-require 'irb/ext/save-history'
+require "irb/ext/save-history"
$:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib")))
diff --git a/bin/chef-solo b/bin/chef-solo
index 958ab21a41..11961f810d 100755
--- a/bin/chef-solo
+++ b/bin/chef-solo
@@ -18,8 +18,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-require 'rubygems'
+require "rubygems"
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
-require 'chef/application/solo'
+require "chef/application/solo"
Chef::Application::Solo.new.run
diff --git a/bin/chef-windows-service b/bin/chef-windows-service
index 292d5651fc..ffc4676fda 100755
--- a/bin/chef-windows-service
+++ b/bin/chef-windows-service
@@ -23,10 +23,10 @@
# generate will call that file, and will be registered as
# a windows service.
-require 'rubygems'
+require "rubygems"
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
-require 'chef'
-require 'chef/application/windows_service'
+require "chef"
+require "chef/application/windows_service"
if Chef::Platform.windows?
Chef::Application::WindowsService.mainloop
diff --git a/bin/knife b/bin/knife
index 6173aadd86..387cf7c2c7 100755
--- a/bin/knife
+++ b/bin/knife
@@ -18,9 +18,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-require 'rubygems'
+require "rubygems"
$:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib")))
-require 'chef/application/knife'
+require "chef/application/knife"
Chef::Application::Knife.new.run