summaryrefslogtreecommitdiff
path: root/lib/chef/provider/remote_file
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/provider/remote_file')
-rw-r--r--lib/chef/provider/remote_file/ftp.rb2
-rw-r--r--lib/chef/provider/remote_file/http.rb2
-rw-r--r--lib/chef/provider/remote_file/local_file.rb2
-rw-r--r--lib/chef/provider/remote_file/network_file.rb2
-rw-r--r--lib/chef/provider/remote_file/sftp.rb2
5 files changed, 5 insertions, 5 deletions
diff --git a/lib/chef/provider/remote_file/ftp.rb b/lib/chef/provider/remote_file/ftp.rb
index a43209c693..b6399ee077 100644
--- a/lib/chef/provider/remote_file/ftp.rb
+++ b/lib/chef/provider/remote_file/ftp.rb
@@ -19,7 +19,7 @@
require "uri"
require "tempfile"
require "net/ftp"
-require_relative ""
+require_relative "../remote_file"
require_relative "../../file_content_management/tempfile"
class Chef
diff --git a/lib/chef/provider/remote_file/http.rb b/lib/chef/provider/remote_file/http.rb
index 6e1e1a479f..86c7b84858 100644
--- a/lib/chef/provider/remote_file/http.rb
+++ b/lib/chef/provider/remote_file/http.rb
@@ -19,7 +19,7 @@
require_relative "../../http/simple"
require_relative "../../digester"
-require_relative ""
+require_relative "../remote_file"
require_relative "cache_control_data"
class Chef
diff --git a/lib/chef/provider/remote_file/local_file.rb b/lib/chef/provider/remote_file/local_file.rb
index e51cfb0782..eb1b88e1fa 100644
--- a/lib/chef/provider/remote_file/local_file.rb
+++ b/lib/chef/provider/remote_file/local_file.rb
@@ -18,7 +18,7 @@
require "uri"
require "tempfile"
-require_relative ""
+require_relative "../remote_file"
class Chef
class Provider
diff --git a/lib/chef/provider/remote_file/network_file.rb b/lib/chef/provider/remote_file/network_file.rb
index 933429d9b6..11d8dd2ff5 100644
--- a/lib/chef/provider/remote_file/network_file.rb
+++ b/lib/chef/provider/remote_file/network_file.rb
@@ -18,7 +18,7 @@
require "uri"
require "tempfile"
-require_relative ""
+require_relative "../remote_file"
require_relative "../../mixin/user_context"
class Chef
diff --git a/lib/chef/provider/remote_file/sftp.rb b/lib/chef/provider/remote_file/sftp.rb
index adc646d09a..f112b3782c 100644
--- a/lib/chef/provider/remote_file/sftp.rb
+++ b/lib/chef/provider/remote_file/sftp.rb
@@ -19,7 +19,7 @@
require "uri"
require "tempfile"
require "net/sftp"
-require_relative ""
+require_relative "../remote_file"
require_relative "../../file_content_management/tempfile"
class Chef