File: create_dir.mdwn

package info (click to toggle)
vmdb2 0.41-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 572 kB
  • sloc: python: 2,591; sh: 151; makefile: 17
file content (17 lines) | stat: -rw-r--r-- 686 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Step: create-dir
-----------------------------------------------------------------------------

Create a directory in the target filesystem

Step keys:

* `create-dir` — REQUIRED; the full (starting from the new
  filesystem root) path name of the directory to create. It will work
  as a `mkdir -p` — Any intermediate directories that do not yet exist
  will be created.
* `perm` — OPTIONAL; the numeric (octal) representation of the
  directory's permissions. Defaults to 0755.
* `uid` — OPTIONAL; the numeric user ID of the directory's
  owner. Defaults to 0 (root).
* `gid` — OPTIONAL; the numeric user ID of the directory's
  group. Defaults to 0 (root).