mirror of
https://github.com/inspec/inspec
synced 2024-12-04 18:39:43 +00:00
Merge pull request #36 from chef/local-file-owner
bugfix: local file owner
This commit is contained in:
commit
bc076f654d
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ module Vulcano::Backends
|
||||||
mode: tmask & 00777,
|
mode: tmask & 00777,
|
||||||
mtime: file_stat.mtime.to_i,
|
mtime: file_stat.mtime.to_i,
|
||||||
size: file_stat.size,
|
size: file_stat.size,
|
||||||
user: pw_username(file_stat.uid),
|
owner: pw_username(file_stat.uid),
|
||||||
group: pw_groupname(file_stat.gid),
|
group: pw_groupname(file_stat.gid),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue