Class: Puppet::FileSystem::Windows
- Inherits:
-
Posix
show all
- Defined in:
- lib/puppet/file_system/windows.rb
Instance Method Summary
collapse
Methods inherited from Posix
#binread, #compare_stream
Methods inherited from FileImpl
#assert_path, #basename, #binread, #children, #compare_stream, #dir, #directory?, #each_line, #exclusive_create, #exclusive_open, #executable?, #file?, #mkpath, #open, #path_string, #pathname, #read, #size, #touch, #writable?
Instance Method Details
#read_preserve_line_endings(path) ⇒ Object
82
83
84
85
86
87
88
|
# File 'lib/puppet/file_system/windows.rb', line 82
def read_preserve_line_endings(path)
contents = path.read( :mode => 'rb', :encoding => Encoding::UTF_8)
contents = path.read( :mode => 'rb', :encoding => Encoding::default_external) unless contents.valid_encoding?
contents = path.read unless contents.valid_encoding?
contents
end
|
#readlink(path) ⇒ Object
36
37
38
39
|
# File 'lib/puppet/file_system/windows.rb', line 36
def readlink(path)
raise_if_symlinks_unsupported
Puppet::Util::Windows::File.readlink(path)
end
|
#symlink(path, dest, options = {}) ⇒ Object
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'lib/puppet/file_system/windows.rb', line 10
def symlink(path, dest, options = {})
raise_if_symlinks_unsupported
dest_exists = exist?(dest) dest_stat = Puppet::Util::Windows::File.stat(dest) if dest_exists
return 0 if dest_exists && dest_stat.ftype == 'directory'
if dest_exists && dest_stat.ftype == 'file' && options[:force] != true
raise(Errno::EEXIST, "#{dest} already exists and the :force option was not specified")
end
if options[:noop] != true
::File.delete(dest) if dest_exists Puppet::Util::Windows::File.symlink(path, dest)
end
0
end
|
#symlink?(path) ⇒ Boolean
#unlink(*file_names) ⇒ Object
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# File 'lib/puppet/file_system/windows.rb', line 41
def unlink(*file_names)
if ! Puppet.features.manages_symlinks?
return ::File.unlink(*file_names)
end
file_names.each do |file_name|
file_name = file_name.to_s stat = Puppet::Util::Windows::File.stat(file_name) rescue nil
if !stat
::File.unlink(file_name) rescue Dir.rmdir(file_name)
elsif stat.ftype == 'directory'
if Puppet::Util::Windows::File.symlink?(file_name)
Dir.rmdir(file_name)
else
raise Errno::EPERM.new(file_name)
end
else
::File.unlink(file_name)
end
end
file_names.length
end
|