IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Переглянути джерело

Support for chown in copy step.

master
Stanislaw Adaszewski 4 роки тому
джерело
коміт
66bc286661
1 змінених файлів з 3 додано та 0 видалено
  1. +3
    -0
      focker/steps.py

+ 3
- 0
focker/steps.py Переглянути файл

@@ -65,6 +65,9 @@ class CopyStep(object):
os.path.join(path, target))
if 'chmod' in options:
os.chmod(os.path.join(path, target), options['chmod'])
if 'chown' in options:
uid, gid = options['chown'].split(':').map(int)
os.chown(os.path.join(path, target), uid, gid)
def create_step(spec):


Завантаження…
Відмінити
Зберегти