| parent | Configuration |
|---|---|
| ancestor | Image Customizer |
Specifies options for placing a file in the OS.
Type is used by: additionalFiles
Added in v0.7.
The path of the source file to copy to the destination path.
Example:
os:
additionalFiles:
files/a.txt:
- path: /a.txtAdded in v0.7.
The contents of the file to write to the destination path.
Example:
os:
additionalFiles:
- content: |
abc
destination: /a.txtAdded in v0.7.
The absolute path of the destination file.
Example:
os:
additionalFiles:
- source: files/a.txt
destination: /a.txtAdded in v0.7.
The permissions to set on the destination file.
Supported formats:
- String containing an octal string (e.g.
"664")
Example:
os:
additionalFiles:
- source: files/a.txt
destination: /a.txt
permissions: "664"Added in v0.7.