Skip to content

Commit 2b73f79

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Emit log when copying file/directory permissions" into stable/wallaby
2 parents f5c243e + 5943f32 commit 2b73f79

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

docker/base/set_configs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ def _set_properties(self, source, dest):
120120
self._set_properties_from_conf(dest)
121121

122122
def _set_properties_from_file(self, source, dest):
123+
LOG.info('Copying permissions from %s onto %s', source, dest)
123124
shutil.copystat(source, dest)
124125
stat = os.stat(source)
125126
os.chown(dest, stat.st_uid, stat.st_gid)

0 commit comments

Comments
 (0)